This repository has been archived by the owner on Apr 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
executable file
·61 lines (61 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nodejs-api-template",
"version": "1.0.0",
"description": "A nodejs api starter template for express and mongodb",
"main": "./src/app.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-joi-validator": "^2.0.0",
"glob": "^7.1.2",
"joi": "^13.1.2",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.12",
"morgan": "^1.9.0",
"winston": "^2.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"sinon": "^4.5.0"
},
"scripts": {
"test": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/mocha ./test/**/*.spec.js --exit",
"test-watch": "nodemon --exec 'npm test'",
"coverage": "./node_modules/.bin/cross-env NODE_ENV=test nyc ./node_modules/.bin/mocha ./test/**/*.spec.js --exit",
"testenv": "./node_modules/.bin/cross-env NODE_ENV=test node ./src/app.js",
"dev": "./node_modules/.bin/cross-env NODE_ENV=development nodemon ./src/app.js",
"debug": "DEBUG=* node ./src/app.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobiamos/nodejs-api-template.git"
},
"keywords": [
"Nodejs",
"express",
"mongoose"
],
"author": "Amos Tobi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tobiamos/nodejs-api-template/issues"
},
"homepage": "https://github.com/tobiamos/nodejs-api-template#readme"
}