forked from ScJa/ercfund
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "ercfund",
"description": "An open-ended investment fund implementation on the Ethereum blockchain for managing ERC20 tokens",
"scripts": {
"test": "scripts/test.sh",
"lint": "solium -d .",
"lint:fix": "solium -d . --fix",
"coverage": "scripts/coverage.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/ScJa/ercfund.git"
},
"author": "Jakob Schneider <jakob.felix.schneider@gmail.com> @ScJa",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"coveralls": "^2.13.1",
"ethereumjs-testrpc": "^6.0.1",
"left-pad": "^1.2.0",
"mocha-lcov-reporter": "^1.3.0",
"solidity-coverage": "^0.4.3",
"solium": "^1.1.2",
"truffle": "^4.0.0",
"web3": "^0.20.6"
},
"dependencies": {
"solidity-sha3": "^0.4.1",
"web3-utils": "^1.0.0-beta.31"
}
}