-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "express-automatic-routes",
"version": "1.1.0",
"description": "fastest way to map directories to URLs in express",
"main": "dist/index.js",
"scripts": {
"lint": "eslint",
"build": "npm run lint && tsc",
"build:watch": "nodemon --exec 'npm run build'",
"tap": "tap tests",
"test": "npm run build && npm run tap",
"test:watch": "nodemon --exec 'npm run tap'",
"coverage": "tap --cov --coverage-report=lcovonly",
"coverage:show": "tap --cov --coverage-report=html tests",
"deploy": "npm run test && npm publish",
"docs:watch": "docsify serve ./docs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/GiovanniCardamone/express-automatic-routes.git"
},
"keywords": [
"express",
"express-plugin",
"express-automatic-routes",
"autoroute",
"autorouting",
"autoroutes"
],
"author": "Giovanni Cardamone <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniCardamone/express-automatic-routes/issues"
},
"homepage": "https://github.com/GiovanniCardamone/express-automatic-routes#readme",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"@types/tap": "^14.10.0",
"cross-env": "^7.0.2",
"docsify": "^4.11.4",
"eslint": "^7.7.0",
"express": "^4.17.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"tap": "^14.10.8",
"typescript": "^4.0.2"
}
}