-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "node-jwt-api",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/SmartGroceryList/api",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint index.js router.js routes models config controllers",
"test": "eslint index.js routes router.js models config controllers & mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && node ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info"
},
"author": "russell perkins",
"license": "CC-BY-NC-ND-3.0",
"dependencies": {
"async": "^2.1.4",
"bcrypt": "^1.0.2",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.3.0",
"mongoose": "^4.6.7",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.11.16",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"supertest": "^3.0.0"
}
}