forked from AlbertoFdzM/express-list-endpoints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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": "express-list-endpoints",
"version": "4.0.0",
"description": "A express package to list all registered endoints and its verbs",
"main": "src/index.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "mocha",
"preversion": "npm run lint && npm test",
"version": "changelog-version && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/AlbertoFdzM/express-list-endpoints.git"
},
"keywords": [
"express",
"routes",
"endpoints",
"route",
"endpoint",
"list",
"ls",
"verb",
"verbs"
],
"author": "Alberto Fernandez <albertofdzm@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6"
},
"devDependencies": {
"chai": "^4.2.0",
"changelog-version": "^1.0.1",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"mocha": "^5.0.0"
}
}