-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 KB
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
{
"name": "express-implhandler",
"version": "3.0.0",
"description": "Simple express method implementation script to catch error code 501",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha --exit",
"preversion": "npm test",
"version": "changelog-version && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/AlbertoFdzM/express-implhandler.git"
},
"author": "Alberto Fernandez <albertofdzm@gmail.com>",
"license": "MIT",
"dependencies": {
"express-list-endpoints": "^4.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"changelog-version": "^1.0.1",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.13.4",
"mocha": "^8.0.1"
}
}