forked from kyledrake/coinpunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 958 Bytes
/
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
{ "name": "coinpunk",
"description": "DIY Bitcoin Wallet Service",
"version": "0.0.1",
"directories": { "lib" : "./lib" },
"main": "app.js",
"author": "Kyle Drake <kyledrake@gmail.com>",
"repository": { "type":"git", "url":"https://github.com/kyledrake/coinpunk.git" },
"dependencies": {
"express": "*",
"optimist": "*",
"bitcoin": "*",
"redis": "*",
"libcoin": "*",
"bigdecimal": "*",
"request": "*",
"browserify": "*"
},
"devDependencies" : {
"mocha": "1.8.1",
"istanbul": "0.1.30",
"supertest": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-shell": "*",
"webdriverjs": "*",
"chai": "*",
"phantomjs": "*",
"redis-mock": "*",
"underscore": "*"
},
"scripts": {
"test": "NODE_ENV=test istanbul test ./node_modules/.bin/_mocha -- --reporter list test/coinpunk/*",
"browsertest": "./node_modules/.bin/_mocha --reporter list test/browser/functional.js"
}
}