forked from HQ20/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.93 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
77
78
79
80
81
82
83
84
85
{
"name": "@hq20/contracts",
"version": "0.0.6",
"description": "A set of reusable smart contracts from HQ20",
"license": "Apache-2.0",
"author": {
"name": "TechHQ",
"github": "hq20"
},
"engines": {
"node": ">= 10.12.0",
"npm": ">= 6.4.0",
"yarn": ">= 1.10.0"
},
"files": [
"/contracts",
"/types",
"!contracts/drafts/",
"!contracts/examples/",
"!contracts/test/",
"!contracts/Migrations.sol"
],
"scripts": {
"deploy:ganache": "truffle deploy --network development",
"start:geth:local": "./scripts/local_geth.sh",
"start:ganache:local": "./scripts/local_ganache.sh",
"test": "yarn build && scripts/test.sh",
"test:ci": "yarn build && CI=true scripts/test.sh",
"coverage": "yarn build && SOLIDITY_COVERAGE=true scripts/test.sh",
"coverage:ci": "yarn build && CI=true SOLIDITY_COVERAGE=true scripts/test.sh",
"lint:sol": "solium -d contracts",
"lint:ts": "tslint -c tslint.json 'test/**/*.ts'",
"lint": "yarn lint:sol && yarn lint:ts",
"security": "docker run --rm --memory=3g -v $(pwd):/tmp -w \"/tmp/\" mythril/myth --truffle",
"docs": "soldoc docs/ contracts",
"generate-ts": "truffle compile && typechain --target truffle --outDir types/truffle-contracts './build/contracts/*.json'",
"build": "truffle compile && typechain --target truffle --outDir types/truffle-contracts './build/contracts/*.json'"
},
"peerDependencies": {
"@openzeppelin/contracts": "3.2.0"
},
"devDependencies": {
"@openzeppelin/contracts": "3.2.0",
"@openzeppelin/test-helpers": "0.5.6",
"@truffle/hdwallet-provider": "1.1.1",
"@types/bignumber.js": "5.0.0",
"@types/chai": "4.2.14",
"@types/mocha": "8.0.3",
"@types/node": "14.14.5",
"bignumber.js": "9.0.1",
"chai": "4.2.0",
"chai-bn": "0.2.1",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"directory-tree": "2.2.5",
"eth-gas-reporter": "0.2.18",
"ethlint": "1.2.5",
"ganache-cli": "6.12.1",
"ganache-time-traveler": "1.0.15",
"girino": "0.0.1-alpha",
"highlight.js": "10.3.1",
"markdown-it": "10.0.0",
"markdown-it-emoji": "1.4.0",
"meow": "7.1.1",
"mustache": "4.0.1",
"node-emoji": "1.10.0",
"pdf-from-html": "0.1.2",
"soldoc": "0.1.3-beta.2",
"solidity-coverage": "0.7.10",
"truffle": "5.1.49",
"truffle-typings": "1.0.8",
"ts-generator": "0.1.1",
"ts-node": "9.0.0",
"typechain": "1.0.5",
"typechain-target-truffle": "1.0.2",
"typescript": "4.0.5"
},
"resolutions": {
"mem": "^4.0.0",
"yargs-parser": "^18.1.2",
"braces": "^2.3.1",
"decompress": "^4.2.1",
"minimist": "^0.2.1"
}
}