-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
116 lines (116 loc) · 2.9 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
{
"name": "serverless-esbuild",
"version": "0.0.0-development",
"description": "Serverless plugin for zero-config JavaScript and TypeScript code bundling using extremely fast esbuild",
"keywords": [
"serverless",
"serverless plugin",
"plugin",
"esbuild",
"aws lambda",
"aws",
"lambda",
"bundler",
"minifier",
"typescript"
],
"homepage": "https://floydspace.github.io/serverless-esbuild",
"bugs": {
"url": "https://github.com/floydspace/serverless-esbuild/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/floydspace/serverless-esbuild.git"
},
"license": "MIT",
"author": {
"name": "Victor Korzunin",
"url": "https://floydspace.github.io"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"precommit": "npm run test",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json",
"dev": "npm run build -- --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf ./dist",
"pretest": "npm run lint",
"test": "jest --passWithNoTests",
"test:e2e": "make -f e2e/Makefile",
"lint": "eslint .",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
},
"prettier": "@floydspace/prettier-config",
"dependencies": {
"@effect/platform": "^0.65.5",
"@effect/platform-node": "^0.60.5",
"@effect/schema": "^0.73.4",
"acorn": "^8.8.1",
"acorn-walk": "^8.2.0",
"anymatch": "^3.1.3",
"archiver": "^5.3.1",
"bestzip": "^2.2.1",
"chokidar": "^3.5.3",
"effect": "^3.8.3",
"execa": "^5.1.1",
"fs-extra": "^11.1.0",
"globby": "^11.0.4",
"p-map": "^4.0.0",
"ramda": "^0.28.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@floydspace/eslint-config": "^1.37.0",
"@floydspace/prettier-config": "^1.37.0",
"@types/archiver": "^5.3.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.11.18",
"@types/ramda": "^0.28.20",
"@types/semver": "^7.3.13",
"@types/serverless": "^3.12.14",
"all-contributors-cli": "^6.24.0",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"eslint": "^8.56.0",
"extract-zip": "^2.0.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"mock-fs": "^5.3.0",
"mock-spawn": "^0.2.6",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.2.5",
"typescript": "~5.5.4"
},
"peerDependencies": {
"esbuild": "0.8 - 0.24",
"esbuild-node-externals": "^1.0.0"
},
"peerDependenciesMeta": {
"esbuild-node-externals": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"eslint": "$eslint"
}
}