-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "document-manager-rest-api",
"version": "1.0.1",
"description": "A RESTful API to implement CRUD for a document management system",
"preferGlobal": true,
"scripts": {
"test": "istanbul cover -x *.spec.js _mocha -- -R spec spec/",
"test:single": "mocha spec",
"check-coverage": "istanbul check-coverage --statements 80 --branches 70 --statements 80 --lines 80",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-rekemezie/REST-API.git"
},
"keywords": [
"REST",
"API",
"express",
"mongoose"
],
"author": "Rowland Ekemezie",
"license": "MIT",
"bugs": {
"url": "https://github.com/andela-rekemezie/REST-API/issues"
},
"homepage": "https://github.com/andela-rekemezie/REST-API#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.1",
"cookie-parser": "^1.4.0",
"dotenv": "^1.2.0",
"events": "^1.1.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"jsonwebtoken": "^5.4.1",
"method-override": "^2.3.5",
"mongoose": "^4.2.8",
"morgan": "^1.6.1",
"standard": "^5.4.1",
"supertest": "^1.1.0",
"validator": "^4.3.0"
},
"devDependencies": {
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.5.0",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"istanbul": "^0.4.1",
"jasmine-node": "^1.14.5",
"mocha": "^2.3.4"
},
"config": {
"ghooks": {
"pre-push": "npm run test:single && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}