-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "format-link-header",
"version": "3.1.1",
"description": "Format a link header object, to the original RFC 5988",
"main": "src/index.js",
"support": true,
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "npm run lint",
"test": "nyc ava",
"test:watch": "ava -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathansamines/format-link-header.git"
},
"keywords": [
"format-link-header",
"web",
"links",
"header",
"links"
],
"author": "Jonathan Samines <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/jonathansamines/format-link-header/issues"
},
"homepage": "https://github.com/jonathansamines/format-link-header#readme",
"devDependencies": {
"ava": "^3.14.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nyc": "^15.1.0"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text-summary"
]
},
"volta": {
"node": "14.15.1"
}
}