forked from kyledrake/coinpunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "coinpunk",
"description": "DIY Bitcoin Wallet Service",
"version": "0.2.1",
"directories": {
"lib": "./lib"
},
"main": "app.js",
"author": "Kyle Drake <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kyledrake/coinpunk.git"
},
"dependencies": {
"express": "*",
"optimist": "*",
"bitcoin": "*",
"redis": "*",
"libcoin": "*",
"request": "*",
"browserify": "*",
"sockjs": "*"
},
"devDependencies": {
"mocha": "1.8.1",
"istanbul": "0.1.30",
"supertest": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-shell": "*",
"webdriverjs": "*",
"chai": "*",
"phantomjs": "*",
"redis-mock": "*",
"underscore": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"uglify-js": "*",
"browserify": "*"
},
"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"
}
}