-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "@netlify/headers-parser",
"version": "8.0.0",
"description": "Parses Netlify headers into a JavaScript object representation",
"type": "module",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"files": [
"lib/**/*"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"test": "vitest run",
"test:bench": "vitest bench",
"test:dev": "vitest",
"test:ci": "vitest run --reporter=default && vitest bench --run --passWithNoTests"
},
"keywords": [
"netlify"
],
"engines": {
"node": "^14.16.0 || >=16.0.0"
},
"author": "Netlify",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"escape-string-regexp": "^5.0.0",
"fast-safe-stringify": "^2.0.7",
"is-plain-obj": "^4.0.0",
"map-obj": "^5.0.0",
"path-exists": "^5.0.0"
},
"devDependencies": {
"@types/node": "^14.18.53",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/netlify/build.git",
"directory": "packages/headers-parser"
},
"bugs": {
"url": "https://github.com/netlify/build/issues"
},
"homepage": "https://github.com/netlify/build#readme"
}