forked from TPL-protocol/tpl-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 755 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "TPL-1.0.1",
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"dependencies": {
"openzeppelin-solidity": "2.0.0",
"web3": "^1.0.0-beta.35",
"solhint": "1.4.0",
"truffle": "5.0.0-beta.1",
"coveralls": "^3.0.2",
"solidity-coverage": "^0.5.11"
},
"scripts": {
"build": "./node_modules/.bin/truffle compile",
"test": "./node_modules/.bin/truffle compile && node scripts/testBasicDirect.js && node scripts/testExtendedDirect.js && node scripts/testBasicOnExtendedDirect.js && echo 'skipping scripts/testOptimizationDisabled.js'",
"coverage": "./node_modules/.bin/solidity-coverage",
"linter": "./node_modules/.bin/solhint 'contracts/**/*.sol'",
"deploy": "node scripts/deploy.js"
}
}