-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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": "express-api-responder",
"version": "1.1.0",
"description": "An Express.js Middleware for conveniently formatting JSON responses",
"main": "index.js",
"scripts": {
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edufresne/express-api-responder.git"
},
"keywords": [
"express",
"express.js",
"middleware",
"api",
"responses",
"json"
],
"author": "Eric Dufresne",
"license": "MIT",
"bugs": {
"url": "https://github.com/edufresne/express-api-responder/issues"
},
"homepage": "https://github.com/edufresne/express-api-responder#readme",
"devDependencies": {
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cookie-parser": "^1.4.3",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.0",
"nyc": "^11.4.1"
},
"dependencies": {
"jsonwebtoken": "^8.1.0"
}
}