-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 984 Bytes
/
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
{
"name": "with-allow",
"version": "1.0.1",
"description": "a route handler wrapper for Express to check if the requested HTTP method are allowed for the route",
"exports": "./src/index.js",
"type": "module",
"scripts": {
"test": "ava",
"lint": "npm run lint:standard",
"lint:standard": "standard --verbose | snazzy || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsynlms/node-with-allow.git"
},
"keywords": [
"express",
"nextjs",
"handler",
"allow",
"route",
"http-methods"
],
"engines": {
"node": ">=12"
},
"author": "Huseyin ELMAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsynlms/node-with-allow/issues"
},
"homepage": "https://github.com/hsynlms/node-with-allow#readme",
"devDependencies": {
"ava": "^3.15.0",
"express": "^4.17.1",
"jest": "^27.0.3",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"supertest": "^6.1.3"
}
}