-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "express-res-status",
"version": "1.0.2",
"description": "Use HTTP status code reason phrases as methods for sending response status and body with Express REST API",
"main": "lib/index.js",
"scripts": {
"test": "gulp test",
"start": "node example/app"
},
"repository": {
"type": "git",
"url": "https://github.com/traynor/express-res-status.git"
},
"keywords": [
"express",
"router",
"REST API",
"http status codes"
],
"engines": {
"node": ">= 0.10.0"
},
"author": "traynor <traynor1@protonmail.com>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-source-map-support-for-6": "0.0.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"chai-http": "^3.0.0",
"chai-spies": "^0.7.1",
"express": "^4.15.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^4.0.0",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"source-map-support": "^0.4.15"
}
}