-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@windingtree/wt-contracts",
"version": "0.8.2",
"description": "Smart contracts of the Winding Tree platform",
"directories": {
"test": "test"
},
"scripts": {
"test": "management/test.sh",
"lint": "eslint test management && solhint 'contracts/**/*.sol'",
"lint:fix": "eslint test management --fix && solhint 'contracts/**/*.sol'",
"dev-net": "./node_modules/.bin/ganache-cli --gasLimit 0xfffffffffff -m --port 8545",
"coverage": "SOLIDITY_COVERAGE=true npm run test",
"soldoc": "management/soldoc.sh",
"flattener": "management/flattener.sh",
"clean": "rimraf build",
"build-index": "node management/build-index.js > index.js",
"set-zos-version": "openzeppelin bump `node -e \"const p = require('./package.json');console.log(p.version);\"`",
"buildfornpm": "npm run clean && truffle compile",
"version": "npm run set-zos-version && git add zos.json && npm run build-index && git add index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/windingtree/wt-contracts"
},
"keywords": [
"winding-tree",
"security",
"encryption",
"smart-contracts"
],
"main": "index.js",
"author": "Winding Tree Developers <[email protected]>",
"license": "GPL-3.0-only",
"dependencies": {
"@ensdomains/ens": "^0.3.11",
"@ensdomains/resolver": "^0.1.9",
"openzeppelin-solidity": "^2.2.0"
},
"devDependencies": {
"@openzeppelin/cli": "^2.5.1",
"@windingtree/lif-token": "^0.1.2-erc827",
"babel-polyfill": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-util": "^6.1.0",
"ethereumjs-wallet": "^0.6.3",
"ganache-cli": "^6.4.5",
"lodash": "^4.17.14",
"rimraf": "^2.6.3",
"solc": "^0.5.7",
"solhint": "^2.0.0",
"solidity-coverage": "^0.6.0",
"solmd": "^0.4.0",
"truffle": "^5.0.29",
"truffle-contract": "^4.0.26",
"truffle-flattener": "^1.4.0",
"truffle-hdwallet-provider": "^1.0.15",
"web3": "^1.2.0",
"web3-utils": "^1.2.0"
},
"engines": {
"node": ">=10.3.0"
}
}