This repository has been archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.48 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
57
58
59
60
{
"name": "express-mount-files",
"version": "0.1.1",
"description": "An express middleware for registering routes through your filesystem",
"main": "src/index.js",
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "nyc --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhumaric/express-mount-files.git"
},
"keywords": [
"express",
"express-plugin"
],
"author": "Romaric Pascal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhumaric/express-mount-files/issues"
},
"homepage": "https://github.com/rhumaric/express-mount-files#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"ava": "^2.4.0",
"consolidate": "^0.15.1",
"coveralls": "^3.0.6",
"eslint": "^6.2.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"np": "^6.1.0",
"nunjucks": "^3.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"peerDependencies": {
"express": "^4.17.1"
},
"dependencies": {
"fast-glob": "^3.0.4"
},
"ava": {
"files": [
"**/*.test.js"
]
}
}