-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
101 lines (101 loc) · 3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@netlify/edge-bundler",
"version": "11.4.0",
"description": "Intelligently prepare Netlify Edge Functions for deployment",
"type": "module",
"main": "./dist/node/index.js",
"exports": "./dist/node/index.js",
"files": [
"deno/**",
"!deno/**/*.test.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"shared/**"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"prepublishOnly": "npm ci && npm test",
"prepack": "npm run build",
"test": "run-s build format test:dev",
"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",
"test:dev": "run-s test:dev:*",
"test:ci": "run-s test:ci:*",
"test:dev:vitest": "vitest run",
"test:dev:vitest:watch": "vitest watch",
"test:dev:deno": "deno test --allow-all deno",
"test:ci:vitest": "vitest run --coverage",
"test:ci:deno": "deno test --allow-all deno",
"test:integration": "node --experimental-modules test/integration/test.js",
"vendor": "deno vendor --force --output deno/vendor https://deno.land/x/[email protected]/mod.ts https://deno.land/x/[email protected]/mod.ts https://deno.land/x/[email protected]/path/mod.ts"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{node,scripts,.github}/**/*.{js,ts,md,html}\" \"*.{js,ts,md,html}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"{node,scripts,.github}/**/*.{js,ts,md,yml,json,html}\" \"*.{js,ts,yml,json,html}\" \".*.{js,ts,yml,json,html}\" \"!**/package-lock.json\" \"!package-lock.json\" \"!node/vendor/**\""
},
"keywords": [],
"license": "MIT",
"repository": "https://github.com/netlify/edge-bundler",
"bugs": {
"url": "https://github.com/netlify/edge-bundler/issues"
},
"author": "Netlify Inc.",
"directories": {
"test": "test/node"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@netlify/eslint-config-node": "^7.0.1",
"@types/glob-to-regexp": "^0.4.1",
"@types/node": "^14.18.32",
"@types/semver": "^7.3.9",
"@types/uuid": "^9.0.0",
"@vitest/coverage-v8": "^0.34.0",
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"cpy": "^9.0.1",
"cross-env": "^7.0.3",
"husky": "^8.0.0",
"nock": "^13.2.4",
"tar": "^6.1.11",
"typescript": "^5.0.0",
"vitest": "^0.34.0"
},
"engines": {
"node": "^14.16.0 || >=16.0.0"
},
"dependencies": {
"@import-maps/resolve": "^1.0.1",
"@vercel/nft": "^0.27.0",
"ajv": "^8.11.2",
"ajv-errors": "^3.0.0",
"better-ajv-errors": "^1.2.0",
"common-path-prefix": "^3.0.0",
"env-paths": "^3.0.0",
"esbuild": "0.24.2",
"execa": "^6.0.0",
"find-up": "^6.3.0",
"get-package-name": "^2.2.0",
"get-port": "^6.1.2",
"is-path-inside": "^4.0.0",
"jsonc-parser": "^3.2.0",
"node-fetch": "^3.1.1",
"node-stream-zip": "^1.15.0",
"p-retry": "^5.1.1",
"p-wait-for": "^4.1.0",
"path-key": "^4.0.0",
"semver": "^7.3.8",
"tmp-promise": "^3.0.3",
"urlpattern-polyfill": "8.0.2",
"uuid": "^9.0.0"
}
}