forked from tusbar/cache-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.26 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
{
"name": "@tusbar/cache-control",
"public": true,
"version": "0.6.1",
"description": "Format and parse HTTP Cache-Control header",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "jest"
},
"keywords": [
"cache-control",
"http",
"rfc7234"
],
"files": [
"index.js",
"index.d.ts"
],
"repository": "https://github.com/tusbar/cache-control",
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"devDependencies": {
"@bizon/semantic-release-config": "^1.1.0",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"semantic-release": "^19.0.2",
"xo": "^0.47.0"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/*.js"
],
"transform": {},
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"semicolon": false,
"space": 2,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off"
},
"overrides": [
{
"files": "__tests__/*.js",
"envs": [
"jest"
]
}
]
},
"prettier": {
"printWidth": 100
},
"release": {
"extends": "@bizon/semantic-release-config"
}
}