-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
50
51
52
53
54
55
56
{
"name": "express-allow-methods",
"version": "0.3.1",
"description": "Express middleware for sending HTTP 405 Method Not Allowed response",
"author": "Dima Parzhitsky <parzhitsky@gmail.com>",
"license": "MIT",
"keywords": [
"express",
"middleware",
"http",
"response",
"405",
"method",
"not",
"allowed",
"helper",
"util"
],
"repository": {
"type": "git",
"url": "git+https://github.com/parzh/express-allow-methods.git"
},
"bugs": {
"url": "https://github.com/parzh/express-allow-methods/issues"
},
"homepage": "https://github.com/parzh/express-allow-methods#readme",
"files": [
"/dist",
"!/dist/**/*.type.js",
"!/dist/**/*.impl.d.ts",
"/README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=0.11.8"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"postbuild": "del-cli dist/**/*.type.js* dist/**/*.impl.d.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/express": "4.17.11"
},
"devDependencies": {
"@types/node": "14.17.3",
"del-cli": "3.0.1",
"typescript": "4.3.2"
},
"peerDependencies": {
"express": ">=4",
"typescript": ">=4.1"
}
}