-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "contract-registry",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"lint:solium": "solium --dir . --fix",
"lint:js": "./node_modules/.bin/eslint ./test --no-ignore --ext .js --fix",
"lint:js-migrations": "./node_modules/.bin/eslint ./migrations --no-ignore --ext .js --fix",
"lint": "npm run lint:js && npm run lint:js-migrations && npm run lint:solium",
"test": "scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciditytech/contract-registry.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/luciditytech/contract-registry/issues"
},
"homepage": "https://github.com/luciditytech/contract-registry#readme",
"dependencies": {
"bignumber.js": "8.1.1",
"ethereumjs-util": "6.1.0",
"ministro-tool": "0.2.2",
"openzeppelin-solidity": "2.1.3",
"pify": "4.0.1",
"typedarray-to-buffer": "3.1.5",
"web3": "1.0.0-beta.47",
"web3-eth": "1.0.0-beta.47",
"web3-utils": "1.0.0-beta.47"
},
"devDependencies": {
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"eslint": "5.15.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"ganache-cli": "6.1.8",
"solium": "1.2.3",
"truffle": "5.0.6",
"pify": "4.0.1"
}
}