-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 1.68 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "avocado",
"version": "1.0.0",
"main": "./offchain/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bignumber-to-string": "^0.1.3",
"bignumber.js": "^2.3.0",
"body-parser": "^1.15.0",
"es6-promisify": "^4.0.0",
"ether-pudding": "^3.0.3",
"express": "^4.13.4",
"js-sha3": "^0.5.1",
"left-pad": "^1.1.0",
"minimist": "^1.2.0",
"node-localstorage": "^1.3.0",
"solc": "^0.3.4",
"tcomb": "^3.0.0",
"web3": "^0.15.3"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.8.0",
"blue-tape": "^0.2.0",
"eslint": "^2.9.0",
"ethereumjs-testrpc": "^2.0.7",
"forever": "^0.15.1",
"nodemon": "^1.9.2"
},
"scripts": {
"start": "node offchain/loader.js",
"cli": "node offchain/cli.js",
"test": "node ./test/loader.js",
"offchain_tests": "node ./offchain/test/loader.js"
},
"author": "jehan.tremback@gmail.com",
"license": "MIT",
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"globals": {
"assert": false,
"contract": false
},
"rules": {
"no-shadow": 0,
"dot-notation": 0,
"no-use-before-define": 0,
"eqeqeq": 2,
"semi": 0,
"strict": 0,
"curly": 2,
"camelcase": 0,
"no-unused-vars": 1,
"quotes": [
2,
"single"
],
"no-undef": 2,
"no-underscore-dangle": 0,
"comma-dangle": 0
}
},
"description": ""
}