-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
116 lines (116 loc) · 3.37 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "document-manager-system",
"version": "1.0.1",
"description": "A document management system that manages user's documents",
"preferGlobal": true,
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "gulp build && node index.js",
"test": "istanbul cover -x *.spec.js -x **/seeds/** -x index.js _mocha -- -R spec spec/server/",
"fend:test": "gulp test:fend",
"initDb": "node index.js initDb",
"check-coverage": "istanbul check-coverage --statements 80 --branches 60 --statements 80 --lines 80",
"coveralls": "cat coverage/merged/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git@github.com:andela-rekemezie/Document-Management-System.git"
},
"keywords": [
"REST",
"API",
"express",
"mongoose"
],
"author": "Rowland Ekemezie",
"license": "MIT",
"bugs": {
"url": "git@github.com:andela-rekemezie/Document-Management-System/issues"
},
"homepage": "git@github.com:andela-rekemezie/Document-Management-System#readme",
"dependencies": {
"async-array": "^0.2.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.1",
"browser-sync": "^2.11.0",
"browserify": "^13.0.0",
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.5.0",
"connect-modrewrite": "^0.8.5",
"cookie-parser": "^1.4.0",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"del": "^2.2.0",
"dotenv": "^1.2.0",
"events": "^1.1.0",
"express": "^4.13.3",
"express-session": "^1.12.1",
"ghooks": "^1.0.3",
"gulp": "^3.9.0",
"gulp-bower": "0.0.11",
"gulp-cache": "^0.4.2",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-imagemin": "^2.4.0",
"gulp-istanbul": "^0.10.3",
"gulp-jade": "^1.1.0",
"gulp-jshint": "^2.0.0",
"gulp-karma": "0.0.5",
"gulp-less": "^3.0.5",
"gulp-minify-css": "^1.2.3",
"gulp-mocha": "^2.2.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^6.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-strip-debug": "^1.1.0",
"gulp-uglify": "^1.5.1",
"gulp-usemin": "^0.3.16",
"gulp-util": "^3.0.7",
"isparta": "^4.0.0",
"istanbul": "^0.4.1",
"jade": "^1.11.0",
"jasmine-core": "^2.6.4",
"jasmine-node": "^1.14.5",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"jsonwebtoken": "5.4.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.6",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-sinon": "^1.0.4",
"lcov-result-merger": "^1.2.0",
"method-override": "^2.3.5",
"mocha": "^3.4.2",
"mongoose": "^4.2.8",
"morgan": "^1.6.1",
"node-mongo-seeds": "^2.2.7",
"optipng-bin": "^4.0.0",
"phantomjs": "^1.9.19",
"rev": "0.0.1",
"sinon": "^1.17.3",
"standard": "^5.4.1",
"supertest": "^1.1.0",
"validator": "^4.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"karma-coveralls": "^1.1.2"
}
}