-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "vaultcontract",
"version": "0.2.20",
"description": "Vault contract. Implementation of a safe timelock in solidity",
"main": "dist/vault.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "rm -rf dist/* && babel-node js/compile.js && babel js/vault.js -o dist/vault.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Giveth/vaultcontract.git"
},
"keywords": [
"dao",
"solidity",
"token",
"charity",
"smart",
"contract",
"vault",
"giveth",
"ethereum",
"safe",
"timelock"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Giveth/vaultcontract/issues"
},
"homepage": "https://github.com/Giveth/vaultcontract",
"dependencies": {
"async": "^2.1.4",
"lodash": "^4.17.4",
"runethtx": "0.0.7"
},
"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",
"bignumber": "^1.1.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"ethconnector": "^0.0.24",
"rimraf": "^2.5.4"
}
}