-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "sriracha",
"version": "1.0.0",
"description": "A spicy admin middleware for mongoose and express.",
"repository": {
"type": "git",
"url": "git://github.com/hdngr/sriracha.git"
},
"main": "index.js",
"files": [
"LICENSE",
"Readme.md",
"index.js",
"lib/"
],
"scripts": {
"start": "gulp simple",
"test": "gulp test",
"test-ci": "istanbul cover -x 'examples' _mocha -- tests/ -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.14.1",
"express": ">=4.0",
"express-session": "^1.12.1",
"jade": "^1.11.0",
"lodash": "^3.10.1",
"method-override": "^2.3.5",
"mongoose": ">=4"
},
"devDependencies": {
"async": "^1.4.2",
"cheerio": "^0.19.0",
"coveralls": "^2.11.4",
"express-session": "^1.12.0",
"gulp": "^3.9.0",
"gulp-livereload": "^3.8.0",
"gulp-mocha": "^2.1.3",
"gulp-nodemon": "^2.0.4",
"istanbul": "^0.4.0",
"minimist": "^1.1.1",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"should": "^7.1.0",
"supertest": "^1.1.0"
}
}