-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "ntask-api",
"version": "1.0.0",
"description": "Task list API",
"main": "index.js",
"scripts": {
"start": "npm run apidoc && npm run clusters",
"single": "nodemon index.js --exec babel-node",
"debug": "nodemon --debug index.js --exec babel-node",
"clusters": "babel-node clusters.js",
"apidoc": "apidoc -i routes/ -o public/apidoc",
"test": "NODE_ENV=test mocha test/**/*.js",
"test-task-update": "USE_HTTP=1 LOGGING=1 NODE_ENV=test mocha --grep 'updates a task' test/**/*.js"
},
"apidoc": {
"name": "Node Task API - Documentation",
"template": {
"forceLanguage": "en",
"withCompare": false
}
},
"author": "Bill Rainey <braineyone@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:brainey/building-apis-ntask-api.git"
},
"dependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"consign": "^0.1.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"helmet": "^1.1.0",
"jwt-simple": "^0.4.1",
"morgan": "^1.6.1",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0",
"sequelize": "^3.19.2",
"sqlite3": "^3.1.8",
"winston": "^2.1.1"
},
"devDependencies": {
"apidoc": "^0.15.1",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}