-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "zeppelin-solidity",
"version": "1.0.0",
"description": "Contains FortKnoxsters' token related Ethereum smart contracts.",
"main": "index.js",
"scripts": {
"test": "scripts/test.sh",
"console": "truffle console",
"coverage": "scripts/coverage.sh"
},
"author": "FortKnoxster",
"homepage": "https://github.com/FortKnoxster/fortknoxster-token",
"keywords": [
"solidity",
"token",
"fortknoxster",
"ethereum",
"smart",
"contracts",
"security",
"zeppelin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FortKnoxster/fortknoxster-token"
},
"dependencies": {
"bitcore-mnemonic": "^1.5.0",
"dotenv": "^4.0.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "^0.6.0",
"oracles-combine-solidity": "github:oraclesorg/oracles-combine-solidity",
"solium": "^1.0.4",
"truffle-contract": "^3.0.1",
"truffle-flattener": "^1.2.0",
"truffle-hdwallet-provider": "0.0.3",
"truffle-privatekey-provider": "0.0.5",
"zeppelin-solidity": "^1.4.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.1",
"coveralls": "^3.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",
"ethereumjs-testrpc": "^6.0.3",
"solidity-coverage": "^0.4.3",
"truffle": "^4.0.5"
}
}