-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "btapi",
"version": "1.0.0",
"description": "baka tsuki api clean up",
"main": "bin/www",
"scripts": {
"start": "node ./bin/www",
"devstart":"./node_modules/.bin/nodemon ./bin/www",
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage-report": "./node_modules/.bin/mocha --reporter spec --require blanket -R html-cov > coverage.html"
},
"engines": {
"node": "0.12.2",
"npm": "2.11.3"
},
"config": {
"blanket": {
"pattern": [
"routes"
]
}
},
"license": "ISC",
"devDependencies":{
"node-stopwatch": "0.0.1",
"nodemon": "^1.7.1",
"debug": "~2.2.0",
"chai": "^3.3.0",
"morgan": "~1.6.1",
"mocha": "^2.3.3",
"blanket": "^1.1.7"
},
"dependencies": {
"body-parser": "~1.14.1",
"braces": "^1.8.2",
"cheerio": "~0.19.0",
"compression": "^1.6.0",
"cookie-parser": "~1.4.0",
"express": "~4.13.3",
"jade": "~1.11.0",
"marked": "~0.3.3",
"request": "^2.64.0",
"serve-favicon": "~2.3.0"
}
}