forked from netlify/zip-it-and-ship-it
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.77 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@netlify/zip-it-and-ship-it",
"version": "8.5.0",
"description": "Zip it and ship it",
"main": "./dist/main.js",
"type": "module",
"bin": {
"zip-it-and-ship-it": "dist/bin.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"prepublishOnly": "npm ci && npm test",
"prepack": "npm run build",
"build": "tsc",
"build:dev": "tsc -w",
"benchmark": "./benchmarks/run.sh",
"format": "run-s build format:check-fix:*",
"format:ci": "run-s build 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": "run-s build format && vitest run",
"test:dev": "vitest",
"test:ci": "npm run build && vitest run"
},
"config": {
"eslint": "--report-unused-disable-directives --ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{src,tests,.github}/**/*.{mjs,cjs,js,mts,cts,ts,md,html}\" \"*.{cjs,mjs,js,cts,mts,ts,md,html}\" \".*.{cjs,mjs,js,cts,mts,ts,md,html}\"",
"prettier": "--loglevel=warn \"{src,tests,.github}/**/*.{cjs,mjs,js,cts,mts,ts,md,yml,json,html}\" \"*.{cjs,mjs,js,cts,mts,ts,yml,json,html}\" \".*.{cjs,mjs,js,cts,mts,ts,yml,json,html}\" \"!package-lock.json\""
},
"eslintIgnore": [
"benchmarks/fixtures/**"
],
"keywords": [
"api",
"bundler",
"cli",
"lambda",
"lambda functions",
"netlify",
"static"
],
"author": "Netlify, Inc",
"license": "MIT",
"repository": "netlify/zip-it-and-ship-it",
"homepage": "https://github.com/netlify/zip-it-and-ship-it#README",
"bugs": {
"url": "https://github.com/netlify/zip-it-and-ship-it/issues"
},
"dependencies": {
"@babel/parser": "7.16.8",
"@netlify/binary-info": "^1.0.0",
"@netlify/esbuild": "0.14.39",
"@vercel/nft": "^0.22.0",
"archiver": "^5.3.0",
"common-path-prefix": "^3.0.0",
"cp-file": "^10.0.0",
"del": "^7.0.0",
"end-of-stream": "^1.4.4",
"es-module-lexer": "^1.0.0",
"execa": "^6.0.0",
"filter-obj": "^5.0.0",
"find-up": "^6.0.0",
"glob": "^8.0.3",
"is-builtin-module": "^3.1.0",
"is-path-inside": "^4.0.0",
"junk": "^4.0.0",
"locate-path": "^7.0.0",
"merge-options": "^3.0.4",
"minimatch": "^6.0.0",
"normalize-path": "^3.0.0",
"p-map": "^5.0.0",
"path-exists": "^5.0.0",
"precinct": "^9.0.1",
"require-package-name": "^2.0.1",
"resolve": "^2.0.0-next.1",
"semver": "^7.0.0",
"tmp-promise": "^3.0.2",
"toml": "^3.0.0",
"unixify": "^1.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@babel/types": "^7.15.6",
"@netlify/eslint-config-node": "^7.0.1",
"@types/archiver": "^5.1.1",
"@types/end-of-stream": "^1.4.1",
"@types/node": "^14.18.32",
"@types/normalize-path": "^3.0.0",
"@types/resolve": "^1.20.2",
"@types/semver": "^7.3.8",
"@types/tmp": "^0.2.3",
"@types/unixify": "^1.0.0",
"@types/yargs": "^17.0.4",
"@vitest/coverage-c8": "^0.28.0",
"cpy": "^9.0.0",
"deepmerge": "^4.2.2",
"get-stream": "^6.0.0",
"husky": "^8.0.0",
"npm-run-all": "^4.1.5",
"sort-on": "^5.0.0",
"source-map-support": "^0.5.21",
"throat": "^6.0.1",
"typescript": "^4.8.4",
"vite": "^4.0.0",
"vitest": "^0.28.0"
},
"engines": {
"node": "^14.16.0 || >=16.0.0"
}
}