-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
{
"name": "aws-lambda-nodejs-esbuild",
"description": "λ💨 AWS CDK Construct to bundle JavaScript and TypeScript AWS lambdas using extremely fast esbuild",
"version": "0.0.0-development",
"license": "MIT",
"author": "Victor Korzunin <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"prepublishOnly": "npm run build",
"precommit": "npm run lint",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"pretest": "npm run lint",
"test": "jest --passWithNoTests",
"lint": "eslint .",
"coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/floydspace/aws-lambda-nodejs-esbuild.git"
},
"bugs": {
"url": "https://github.com/floydspace/aws-lambda-nodejs-esbuild/issues"
},
"homepage": "https://floydspace.github.io/aws-lambda-nodejs-esbuild",
"keywords": [
"aws-cdk",
"cdk-construct",
"construct",
"esbuild",
"aws-lambda",
"aws-lambda-node",
"aws",
"lambda",
"bundler",
"builder",
"typescript"
],
"devDependencies": {
"@aws-cdk/assert": "^1.114.0",
"@aws-cdk/aws-lambda": "^1.114.0",
"@aws-cdk/core": "^1.114.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.14",
"@types/mock-fs": "^4.13.0",
"@types/node": "^12.12.38",
"@types/ramda": "^0.27.30",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"mock-fs": "^4.13.0",
"semantic-release": "^17.2.1",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"dependencies": {
"esbuild": ">=0.6",
"fs-extra": "^9.0.1",
"ramda": "^0.27.1"
},
"peerDependencies": {
"@aws-cdk/aws-lambda": "^1.0.0",
"@aws-cdk/core": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}