-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.33 KB
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
{
"name": "tpl-contracts",
"version": "1.1.3",
"license": "MIT",
"description": "Solidity smart contract implementing TPL (the Transaction Layer Protocol).",
"homepage": "https://tplprotocol.org/",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"TPL"
],
"repository": {
"type": "git",
"url": "https://github.com/TPL-protocol/tpl-contracts.git"
},
"bugs": {
"url": "https://github.com/TPL-protocol/tpl-contracts/issues"
},
"scripts": {
"build": "./node_modules/.bin/truffle compile",
"test": "./node_modules/.bin/truffle compile && node scripts/test/testBasicDirect.js && node scripts/test/testExtendedDirect.js && node scripts/test/testExtendedPaymentsDirect.js && node scripts/test/testBasicOnExtendedDirect.js && node scripts/test/testExtraDirect.js && echo 'skipping scripts/test/testOptimizationDisabled.js'",
"coverage": "./node_modules/.bin/solidity-coverage",
"linter": "./node_modules/.bin/solhint 'contracts/**/*.sol'",
"deploy": "node scripts/deploy/deploy.js",
"tx": "node scripts/cli/cli.js"
},
"devDependencies": {
"coveralls": "^3.0.2",
"ganache-cli": "6.3.0",
"solhint": "1.4.0",
"solidity-coverage": "0.5.11",
"truffle": "5.0.0-beta.1",
"web3": "1.0.0-beta.37"
},
"dependencies": {
"openzeppelin-solidity": "2.0.0"
}
}