This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 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
{
"name": "netlify-headers-parser",
"version": "6.0.2",
"description": "Parses Netlify headers into a JavaScript object representation",
"type": "module",
"exports": "./src/index.js",
"main": "./src/index.js",
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"prepublishOnly": "npm ci && npm test",
"test": "run-s format test:dev",
"test:dev": "ava",
"test:ci": "c8 -r lcovonly -r text -r json ava",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"*.{cjs,mjs,js,md}\" \"{src,tests}/**/*.{cjs,mjs,js}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \".github/**/*.{md,yml}\" \"*.{cjs,mjs,js,yml,json}\" \"{src,tests}/**/*.{cjs,mjs,js}\" \"!package-lock.json\" \"!CHANGELOG.md\""
},
"keywords": [
"netlify"
],
"engines": {
"node": "^12.20.0 || ^14.14.0 || >=16.0.0"
},
"author": "Netlify",
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^5.0.0",
"is-plain-obj": "^4.0.0",
"map-obj": "^5.0.0",
"path-exists": "^5.0.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@netlify/eslint-config-node": "^6.0.0",
"ava": "^4.0.0",
"c8": "^7.11.0",
"husky": "^7.0.4",
"test-each": "^4.0.0"
},
"files": [
"src/**/*.js"
],
"ava": {
"files": [
"tests/*.js"
],
"verbose": true,
"workerThreads": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/netlify-headers-parser.git"
},
"bugs": {
"url": "https://github.com/netlify/netlify-headers-parser/issues"
},
"homepage": "https://github.com/netlify/netlify-headers-parser#readme"
}