-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "@baseprotocol/contracts",
"version": "0.0.1",
"description": "Base Protocol smart contracts on Ethereum.",
"keywords": [
"ethereum",
"smart-contracts",
"solidity"
],
"homepage": "https://github.com/Base-Protocol/contracts#readme",
"bugs": {
"url": "https://github.com/Base-Protocol/contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Base-Protocol/contracts.git"
},
"license": "ISC",
"author": "[email protected]",
"scripts": {
"precommit": "./scripts/pre-commit.sh",
"coverage": "npx frg-coverage",
"lint": "npx eslint ./scripts ./test ./util *.js --cache --fix && npx solhint ./contracts/*.sol ./contracts/*/*.sol",
"setup-ganache": "npx start-chain ganacheUnitTest && npm run deploy-contracts ganacheUnitTest",
"test": "./scripts/test.sh"
},
"pre-commit": {
"run": [
"precommit",
"lint"
]
},
"dependencies": {
"app-root-path": "2.1.0",
"frg-ethereum-runners": "https://github.com/ampleforth/frg-ethereum-runners.git#v1.0.0-alpha",
"js-yaml": "^3.13.1",
"openzeppelin-eth": "2.0.2",
"truffle": "4.1.14"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.2",
"@openzeppelin/test-helpers": "^0.5.4",
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-mocha": "0.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-spellcheck": "0.0.10",
"eslint-plugin-standard": "^1.3.3",
"lodash": ">=4.17.13",
"pre-commit": "^1.2.2",
"solhint": "^1.1.10",
"solidity-coverage": "0.5.8",
"stochasm": "^0.5.0",
"zos-lib": "^2.2.2"
}
}