-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "@knowledgeio/knowledge-contracts",
"main": "build/contracts/Knowledge.json",
"description": "Knowledge Ethereum Contracts",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build",
"lint": "standard | snazzy; solium -d contracts/",
"coverage": "solidity-coverage",
"build": "npm run clean && truffle compile",
"develop": "truffle develop",
"deploy": "truffle migrate",
"deploy-ropsten": "truffle migrate --network ropsten",
"test": "truffle test",
"doctoc": "doctoc --github --title \"## Contents\" README.md",
"console": "truffle console",
"ganache": "eval $(cat .env) && ganache-cli --db chain -m \"$MNEMONIC\"",
"truffle:exec": "f () { truffle exec ./scripts/$1.js $2; }; f"
},
"dependencies": {},
"devDependencies": {
"doctoc": "^1.3.0",
"dotenv": "^4.0.0",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.0.3",
"left-pad": "^1.2.0",
"prompt-promise": "^1.0.3",
"rimraf": "^2.6.2",
"run-with-testrpc": "^0.3.0",
"snazzy": "^7.0.0",
"solidity-coverage": "^0.4.7",
"solium": "^1.1.7",
"standard": "^10.0.3",
"truffle": "^4.0.4",
"truffle-hdwallet-provider": "0.0.3"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"artifacts",
"assert",
"contract",
"web3"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowledge/knowledge-contracts.git"
},
"bugs": {
"url": "https://github.com/knowledge/knowledge-contracts/issues"
},
"homepage": "https://github.com/knowledge/knowledge-contracts#readme"
}