-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.59 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": "emptyproject",
"version": "2.0.0",
"description": "Empty Project",
"author": "T. Riley Schwarz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TRileySchwarz/emptyProject"
},
"scripts": {
"compile": "truffle compile",
"coverage": "scripts/coverage.sh",
"ganache-cli": "node_modules/.bin/ganache-cli",
"generateFlats": "scripts/generateFlats.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\"",
"test": "npm run compile && scripts/test.sh",
"testDebug": "node $NODE_DEBUG_OPTION ./node_modules/.bin/truffle test"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"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",
"ethjs-abi": "^0.2.1",
"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.4.0",
"solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"solhint": "2.1.0",
"truffle": "^5.0.18",
"truffle-flattener": "^1.4.0",
"web3": "^1.0.0-beta.36"
},
"dependencies": {}
}