-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 KB
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
{
"name": "coinstac-server",
"version": "0.0.1",
"description": "Services for COINSTAC",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"atob": "^1.1.2",
"bcrypt": "^0.8.3",
"bluebird": "^2.9.33",
"boom": "^2.8.0",
"co": "^4.6.0",
"config": "^1.11.0",
"glob": "^5.0.13",
"good": "^6.3.0",
"good-console": "^5.0.2",
"good-file": "^5.0.1",
"hapi": "^8.8.0",
"hapi-auth-hawk": "^3.0.0",
"hapi-couchdb": "^0.2.0",
"hapi-relax": "^1.0.1",
"hapi-response-meta": "^0.2.0",
"lodash": "^3.10.0",
"nano": "^6.1.4",
"pouchdb-wrapper": "^1.4.0",
"redis": "^0.12.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"axios": "^0.5.4",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-jscs": "^1.5.0",
"grunt-mocha-cli": "^1.12.0",
"inject-then": "^2.0.0",
"load-grunt-config": "^0.16.0",
"load-grunt-tasks": "^3.1.0",
"nomnom": "^1.8.1",
"randomstring": "^1.0.7",
"should": "^5.0.0",
"time-grunt": "^1.0.0"
},
"scripts": {
"test": "mocha --harmony --harmony_arrow_functions test/integration/*.js",
"start": "node --harmony --harmony_arrow_functions index.js",
"startcouch": "couchdb -b",
"stopcouch": "couchdb -k"
},
"repository": {
"type": "git",
"url": "https://github.com/MRN-Code/node_boilerplate.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MRN-Code/node_boilerplate/issues"
},
"homepage": "https://github.com/MRN-Code/node_boilerplate"
}