-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "base_lib_express_es6",
"version": "0.0.0-development",
"description": "A base structure to build a javascript library",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 60 --branches 60 --functions 60 --lines 60",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "babel-node index.js --presets es2015,stage-2",
"test": "mocha test/unit/* --compilers js:babel-register",
"test:all": "mocha test/* --compilers js:babel-register",
"cover": "nyc npm test",
"cover:all": "nyc npm test:all",
"lint": "esw *.js app config --color",
"lint:clean": "esw *.js app config --color --fix",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/igiagante/base_lib_express_es6.git"
},
"keywords": [
"express",
"mongoose",
"es6",
"boilerplate"
],
"author": "Ignacio Giagante <igiagante@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igiagante/base_lib_ex 5rpress_es6/issues"
},
"homepage": "https://github.com/igiagante/base_lib_express_es6#readme",
"czConfig": {
"path": "./node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run cover:all && npm run check-coverage"
}
},
"dependencies": {
"unique-random-array": "1.0.0",
"debug": "^2.6.3",
"dotenv": "^4.0.0",
"bluebird": "3.5.0",
"express": "4.15.2",
"body-parser": "1.17.1",
"express-jwt": "5.1.0",
"express-validation": "1.0.2",
"express-winston": "2.3.0",
"jsonwebtoken": "7.1.9",
"http-status": "1.0.1",
"joi": "10.2.2",
"mongoose": "4.9.1",
"lodash": "4.17.4",
"morgan": "1.8.1",
"winston": "2.3.1",
"cookie-parser": "1.4.3",
"cors": "2.8.1",
"compression": "1.6.2"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-2": "6.22.0",
"babel-register": "6.24.0",
"chai": "3.5.0",
"codecov": "2.1.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.16.1",
"eslint-config-airbnb-base": "7.1.0",
"eslint-plugin-import": "1.16.0",
"eslint-watch": "2.1.14",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"nyc": "10.1.2",
"semantic-release": "^6.3.2",
"supertest": "3.0.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}