-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
88 lines (88 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "staticify",
"version": "5.0.0",
"description": "A better static asset handler for Node.js/Express.js",
"main": "index.js",
"author": "Rakesh Pai <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/errorception/staticify.git"
},
"scripts": {
"mocha": "mocha --exit",
"lint": "xo && tsd",
"fix": "xo --fix",
"tsd": "tsd",
"test": "npm run lint && npm run mocha",
"test:cov": "c8 npm run mocha"
},
"keywords": [
"static",
"asset",
"versioning",
"caching",
"express",
"expressjs"
],
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"ignore-by-default": "^2.1.0",
"memoizee": "^0.4.15",
"send": "^0.18.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.33",
"@types/send": "^0.17.1",
"c8": "^7.13.0",
"mocha": "^9.2.2",
"should": "^13.2.3",
"tsd": "^0.28.1",
"xo": "^0.52.4"
},
"engines": {
"node": ">=12"
},
"xo": {
"space": 4,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"func-style": [
"error",
"expression"
],
"operator-linebreak": [
"error",
"after"
],
"space-before-function-paren": [
"error",
"never"
],
"spaced-comment": "off",
"unicorn/better-regex": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/consistent-type-definitions": "off"
},
"overrides": [
{
"files": "test/**",
"envs": [
"mocha"
]
}
]
}
}