-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "agr-erc20",
"version": "1.0.0",
"description": "Aggregion ERC-20 token smart contract",
"files": [
"build",
"contracts",
"test/behaviors"
],
"scripts": {
"build": "scripts/build.sh",
"compile": "truffle compile",
"console": "truffle console",
"coverage": "scripts/coverage.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"prepack": "npm run build",
"version": "scripts/version.js",
"test": "npm run compile && scripts/test.sh",
"publish:ropsten": "truffle deploy --network ropsten --reset",
"publish:development": "truffle deploy --network development"
},
"repository": {
"type": "git",
"url": "https://github.com/aggregion/agr-erc20.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"aggregion"
],
"author": "Aggregion <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aggregion/agr-erc20/issues"
},
"homepage": "https://www.aggregion.com",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"ethereumjs-util": "^6.0.0",
"ganache-cli": "^6.4.1",
"ganache-cli-coverage": "https://github.com/frangio/ganache-cli/releases/download/v6.4.1-coverage/ganache-cli-coverage-6.4.1.tgz",
"openzeppelin-test-helpers": "^0.3.2",
"solhint": "^1.5.0",
"solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"truffle": "^5.0.0"
},
"dependencies": {
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.0-web3one.5"
}
}