-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"author": "Paul Serby <paul@serby.net>",
"name": "versionator",
"description": "Static content versioning middleware for connect and express.",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git@github.com:serby/versionator.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"main": "index.js",
"scripts": {
"lint": "eslint -f unix .",
"pretest": "npm run-script lint",
"test": "npm run test:code",
"test:watch": "mocha --watch",
"test:code": "nyc mocha",
"posttest": "nyc check-coverage && rm -rf coverage",
"prettier": "prettier --write '**/*.js'",
"prepublish": "npm test && npm prune"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"async": "^3.1.0",
"walk": "^2.3.14"
},
"devDependencies": {
"assert-diff": "^2.0.3",
"connect": "^3.7.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.17.1",
"jade": "^1.11.0",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"request": "^2.88.0",
"should": "^13.2.3"
},
"false": {}
}