-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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": "connect-chaotic-response",
"version": "1.0.3",
"description": "Chaotic http responses middleware for connect and express",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha \"tests/*.spec.js\"",
"lint": "eslint .",
"format": "prettier --check index.js \"lib/*.js\" \"tests/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregra81/connect-chaotic-response.git"
},
"keywords": [
"connect",
"express",
"http"
],
"author": "Greg Rashkevitch",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregra81/connect-chaotic-response/issues"
},
"homepage": "https://github.com/gregra81/connect-chaotic-response#readme",
"engines": {
"node": ">=10.13.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"eslint": ">=4.18.2",
"expect.js": "^0.3.1",
"mocha": "^8.1.2",
"node-mocks-http": "^1.5.6",
"prettier": "^2.1.1",
"sinon": "^1.17.7"
},
"standard": {
"env": [
"mocha"
]
}
}