-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
86 lines (86 loc) · 2.29 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
{
"name": "@vercel/fun",
"version": "0.0.0-development",
"description": "Local Lambda development environment",
"main": "dist/src/index",
"typings": "dist/src/index",
"license": "Apache-2.0",
"repository": "vercel/fun",
"scripts": {
"build": "rm -rf dist && tsc && cpy --parents src test '!**/*.ts' dist",
"test": "echo \"Node.js version: $(node -v)\\n\" && pnpm build && jest --detectOpenHandles --forceExit --runInBand --verbose dist/test/test.js",
"test-codecov": "nyc pnpm test",
"report-codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote './{src,test}/**/*.ts'",
"prepublishOnly": "pnpm run build && rm -rf dist/test"
},
"files": [
"dist/src"
],
"dependencies": {
"@tootallnate/once": "2.0.0",
"async-listen": "1.2.0",
"debug": "4.3.4",
"execa": "3.2.0",
"fs-extra": "8.1.0",
"generic-pool": "3.4.2",
"micro": "9.3.5-canary.3",
"ms": "2.1.1",
"node-fetch": "2.6.7",
"path-match": "1.2.4",
"promisepipe": "3.0.0",
"semver": "7.5.4",
"stat-mode": "0.3.0",
"stream-to-promise": "2.2.0",
"tar": "4.4.18",
"tree-kill": "1.2.2",
"uid-promise": "1.0.0",
"uuid": "3.3.2",
"xdg-app-paths": "5.1.0",
"yauzl-promise": "2.1.3"
},
"devDependencies": {
"@types/debug": "4.1.9",
"@types/fs-extra": "8.1.0",
"@types/generic-pool": "3.1.9",
"@types/jest": "27.0.2",
"@types/micro": "7.3.6",
"@types/node": "16.18.122",
"@types/node-fetch": "2.5.0",
"@types/tar": "4.0.0",
"@types/uuid": "8.3.1",
"@types/yauzl-promise": "2.1.0",
"codecov": "3.7.1",
"cpy-cli": "2.0.0",
"jest": "27.3.1",
"lint-staged": "9.2.5",
"nyc": "14.1.1",
"pre-commit": "1.2.2",
"prettier": "1.15.3",
"source-map-support": "0.5.10",
"ts-jest": "27.0.7",
"typescript": "4.9.3"
},
"pre-commit": "lint:staged",
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": false,
"isolatedModules": true
}
},
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": [
"prettier --write --single-quote",
"git add"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 16"
}
}