-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 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
47
48
49
50
51
52
53
{
"name": "identity-erc",
"version": "1.0.0",
"description": "Identity Aggregation Protocol for Ethereum",
"repository": {
"type": "git",
"url": "git+https://github.com/hydrogen-dev/identity-erc.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"
],
"author": "Noah Zinsmeister",
"contributors": [
{
"name": "Anurag Angara"
},
{
"name": "Andy Chorlian"
},
{
"name": "Shane Hampton"
}
],
"license": "GPL-3.0-or-later",
"dependencies": {
"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"
}
}