-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 974 Bytes
/
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
{
"name": "cryptocontrol-smart-contracts",
"version": "1.0.1",
"description": "Smart contracts which mints tokens on the CryptoControl server",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rimraf build; truffle compile",
"flatten": "bash ./flatten.sh",
"start": "truffle develop",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptocontrol/smart-contracts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cryptocontrol/smart-contracts/issues"
},
"homepage": "https://github.com/cryptocontrol/smart-contracts#readme",
"dependencies": {
"create-hash": "^1.2.0",
"ethereumjs-util": "^5.2.0",
"openzeppelin-solidity": "1.12.0",
"truffle-hdwallet-provider": "^0.0.6"
},
"devDependencies": {
"chai": "^4.1.2",
"pify": "^4.0.0",
"rimraf": "^2.6.2"
}
}