-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "milestonetracker",
"version": "0.1.45",
"description": "Milestone Tracker contract",
"main": "dist/milestonetracker.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "rm -rf dist/* && babel-node js/compile.js && babel js/milestonetracker.js -o dist/milestonetracker.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Giveth/milestonetracker.git"
},
"keywords": [
"dao",
"solidity",
"token",
"charity",
"smart",
"contract",
"milestone",
"tracker",
"ethereum",
"giveth"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Giveth/milestonetracker/issues"
},
"homepage": "https://github.com/Giveth/milestonetracker",
"dependencies": {
"async": "^2.1.4",
"bignumber.js": "^4.0.0",
"lodash": "^4.17.4",
"multisigwallet": "0.0.3",
"rlp": "^2.0.0",
"runethtx": "0.0.7",
"vaultcontract": "0.2.20"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"ethconnector": "0.0.24"
}
}