-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "groups-service",
"version": "0.0.1",
"description": "Restful Groups API using nodeJS, express and mongoose",
"main": "service.js",
"scripts": {
"preservice": "npm run test",
"service": "NODE_ENV=dev node ./service/service.js | ./node_modules/.bin/bunyan",
"start-dev-mongo": "/usr/bin/mongod --dbpath=data/db",
"test": "NODE_ENV=test mocha --recursive",
"start-test-mongo": "/usr/bin/mongod --dbpath=data/db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hillc5/groups-service.git"
},
"keywords": [
"RESTful",
"nodeJS",
"mongoose",
"expressJS",
"MongoDB"
],
"author": "Charlie Hill (charles.a.hill1@gmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/hillc5/groups-service/issues"
},
"homepage": "https://github.com/hillc5/groups-service#readme",
"dependencies": {
"body-parser": "^1.15.2",
"bunyan": "^1.8.5",
"express": "^4.14.0",
"express-validator": "^3.0.0",
"mongoose": "^4.7.0",
"morgan": "^1.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"config": "^1.24.0",
"js-yaml": "^3.7.0",
"mocha": "^3.2.0"
}
}