forked from mpg1977/howdoo.token.contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
{
"name": "smart-contract-templates",
"version": "1.0.0",
"description": "Smart Contract templates",
"homepage": "https://bitbucket.org/applicature/solidity.project-template#readme",
"license": "UNLICENSED",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts"
],
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/applicature/solidity.smart-contract-templates.git"
},
"author": "Andrew Zubko <[email protected]>",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "npm run solhint",
"ganache": "ganache-cli > /dev/null 2>&1 &",
"test": "truffle test",
"develop": "truffle develop",
"compile": "truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"migrate": "truffle migrate --network development",
"solhint": "solhint 'contracts/**/*.sol'",
"solium": "solium -d contracts/",
"precommit": "npm run solhint && npm run coverage && npm run solium",
"test:ci": "npm run solhint && npm run coverage && npm run ganache && npm run test && npm run solium"
},
"directories": {
"test": "test"
},
"dependencies": {
"openzeppelin-solidity": "^1.10.0",
"truffle": "^4.1.11",
"truffle-hdwallet-provider": "0.0.5"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.0",
"coveralls": "^2.13.1",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eth-gas-reporter": "^0.2.10",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-testrpc": "^4.1.3",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.6.0",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"solhint": "^1.1.10",
"solidity-coverage": "^0.5.0",
"minimetoken": "^0.2.0",
"solium": "^1.1.7"
}
}