-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 737 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 737 Bytes
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
{
"author": "Felix Gnass",
"name": "tamper",
"description": "middleware to capture and modify response bodies",
"version": "1.1.0",
"homepage": "http://github.com/fgnass/tamper",
"repository": {
"type": "git",
"url": "https://github.com/fgnass/tamper.git"
},
"keywords": [
"connect",
"middleware",
"capture",
"modify",
"response"
],
"main": "./index.js",
"types": "./index.d.ts",
"devDependencies": {
"@types/express": "^4.16.1",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"supertest": "^3.4.2"
},
"scripts": {
"test": "mocha",
"lint": "eslint ."
}
}