forked from floydspace/serverless-esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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
{
"name": "serverless-esbuild",
"description": "Serverless plugin for zero-config JavaScript and TypeScript code bundling using extremely fast esbuild",
"version": "0.0.0-development",
"license": "MIT",
"author": "Victor Korzunin",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"prepublishOnly": "npm run build",
"precommit": "npm run test",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"pretest": "npm run lint",
"test": "jest --passWithNoTests",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/floydspace/serverless-esbuild.git"
},
"bugs": {
"url": "https://github.com/floydspace/serverless-esbuild/issues"
},
"homepage": "https://floydspace.github.io",
"keywords": [
"serverless",
"serverless plugin",
"plugin",
"esbuild",
"aws lambda",
"aws",
"lambda",
"bundler",
"minifier",
"typescript"
],
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.14",
"@types/node": "^12.12.38",
"@types/ramda": "^0.27.6",
"@types/serverless": "^1.78.25",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"mock-fs": "^4.12.0",
"semantic-release": "^17.0.8",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"dependencies": {
"bestzip": "^2.2.0",
"chokidar": "^3.4.3",
"esbuild": ">=0.8",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"ramda": "^0.27.0",
"string.prototype.matchall": "^4.0.4"
}
}