-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "ethmoneybox",
"version": "1.0.0",
"description": "moneybox contract for ethereum network written in solidity",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/truffle test",
"develop": "./node_modules/.bin/truffle develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxpaul/ethmoneybox.git"
},
"keywords": [
"solidity",
"ethereum",
"example",
"smart",
"contract"
],
"author": "mxpaul",
"license": "MIT",
"bugs": {
"url": "https://github.com/mxpaul/ethmoneybox/issues"
},
"homepage": "https://github.com/mxpaul/ethmoneybox#readme",
"devDependencies": {
"babel-env": "^2.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"solc": "^0.5.0",
"truffle": "^5.0.22",
"truffle-assertions": "^0.9.1"
},
"dependencies": {
"growl": "^1.10.5",
"openzeppelin-solidity": "^2.3.0",
"openzeppelin-test-helpers": "^0.4.0"
}
}