-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "@enfo/aws-lambda",
"version": "1.3.0",
"description": "Simplifies response flow when working with AWS Lambda and API Gateway",
"main": "index.js",
"scripts": {
"postinstall": "npx husky install",
"prepublishOnly": "npx pinst --disable",
"postpublish": "npx pinst --enable",
"publish:package": "cd .dist && npm publish",
"build": "npx webpack",
"test": "npx jest --runInBand",
"lint": "npx eslint --ext .ts .",
"lint:fix": "npx eslint --fix --ext .ts ."
},
"repository": {
"type": "git",
"url": "https://github.com/enfogroup/aws-lambda.git"
},
"keywords": [
"aws",
"lambda",
"handler"
],
"author": "Urban Pettersson",
"license": "MIT",
"homepage": "https://github.com/enfogroup/aws-lambda#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.4.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"pinst": "^3.0.0",
"ts-jest": "^29.0.2",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"ttypescript": "^1.5.13",
"typescript": "^4.5.4",
"typescript-transform-paths": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.8.0"
}
}