-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1 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
{
"name": "express-prettify",
"version": "0.1.2",
"description": "express middleware to send pretty printed json",
"repository": {
"type": "git",
"url": "git+https://github.com/stoshiya/express-prettify.git"
},
"scripts": {
"clean": "rm -f *~ .??*~",
"codeclimate": "cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate-test-reporter",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
},
"keywords": [
"express",
"pretty",
"json"
],
"author": "Toshiya SAITOH <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoshiya/express-prettify/issues"
},
"homepage": "https://github.com/stoshiya/express-prettify#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.2",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"mocha": "^9.2.2",
"supertest": "^3.3.0"
}
}