-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "metaresolvers",
"version": "0.1.0",
"description": "ERC1484 Resolvers",
"repository": {
"type": "git",
"url": "git+https://github.com/METADIUM/MetaResolvers.git"
},
"scripts": {
"build": "npm run buidl",
"buidl": "rm -rf build/ && truffle compile",
"chain": "ganache-cli --port 8545 --seed hydro",
"test": "truffle test --network development",
"cover": "rm -f scTopics && rm -f coverage.json && rm -rf coverage && solidity-coverage",
"chain-cover": "testrpc-sc --port 8555 -l 0xfffffffffff -g 0x01 --allowUnlimitedContractSize --seed hydro",
"test-cover": "truffle test --network coverage"
},
"keywords": [
"ERC",
"ethereum",
"solidity",
"identity"
],
"license": "GPL-3.0-or-later",
"dependencies": {
"eth-gas-reporter": "^0.1.12",
"ethereumjs-util": "^6.0.0",
"ganache-cli": "^6.2.3",
"truffle": "^5.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"underscore": "^1.9.1"
}
}