-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 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
{
"name": "Zeppelin",
"version": "0.0.1",
"description": "A decentralized marketplace for computing power",
"main": "src/main.jsx",
"scripts": {
"watch": "npm run watch-js & npm start",
"watch-js": "watchify --debug src/main.jsx -o build/app.js -v",
"build": "browserify src/main.jsx | uglifyjs --compress --mangle -o build/app.js -- -",
"test": "mochify",
"test-watch": "mochify --watch",
"cover": "node cover.js && cat lcov.info | coveralls && rm lcov.info",
"start": "babel-node server.js",
"clean": "rm build/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dccp/zeppelin"
},
"keywords": [
"zeppelin",
"ethereum"
],
"author": "Doktor Träd",
"license": "MIT",
"bugs": {
"url": "https://github.com/dccp/zeppelin/issues"
},
"homepage": "https://github.com/dccp",
"devDependencies": {
"babel": "^4.7.16",
"babelify": "^5.0.4",
"body-parser": "^1.12.2",
"browserify": "^9.0.3",
"coveralls": "^2.11.2",
"docker-transfer": "dccp/docker-transfer#dev",
"expect.js": "^0.3.1",
"express": "^4.12.2",
"mochify": "^2.6.0",
"mochify-istanbul": "^2.1.1",
"uglify-js": "^2.4.16",
"watchify": "^2.4.0"
},
"dependencies": {
"bignumber.js": "^2.0.3",
"bootstrap": "^3.3.4",
"console-polyfill": "^0.2.0",
"es5-shim": "^4.1.0",
"express-sse": "^0.2.1",
"jquery": "^2.1.3",
"moment": "^2.10.2",
"pubsub-js": "^1.5.2",
"q": "^1.2.0",
"react": "^0.13.1",
"react-router": "^0.13.2",
"web3.js": "ethereum/ethereum.js#develop",
"ws": "^0.7.1",
"xhr": "^2.0.1"
},
"browserify": {
"transform": [
"babelify"
]
}
}