This repository was archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "aws-lambda-typescript",
"version": "5.1.1",
"description": "simple build pipeline for creating lambda functions in typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/prettier --write '**/*.{js,jsx,ts,tsx,css,html,yaml,json,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevejhiggs/aws-lambda-typescript.git"
},
"keywords": [
"typescript",
"lamdba",
"aws"
],
"author": "steve higgs",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevejhiggs/aws-lambda-typescript/issues"
},
"homepage": "https://github.com/stevejhiggs/aws-lambda-typescript#readme",
"dependencies": {
"@types/aws-lambda": "8.10.76",
"@types/node": "^14.14.41",
"aws-sdk": "^2.897.0",
"copy": "^0.3.2",
"del": "^6.0.0",
"fancy-log": "^1.3.3",
"fastify": "^3.15.1",
"gulp-install": "^1.1.0",
"gulp-webpack-typescript-pipeline": "^17.0.1",
"gulp-zip": "^5.1.0",
"node-aws-lambda": "^0.1.8",
"plugin-error": "^1.0.1",
"ts-node": "^9.1.1"
},
"peerDependencies": {
"gulp": "^4.0.2"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"prettier": "^2.2.1"
},
"prettier": {
"printWidth": 250,
"trailingComma": "none",
"singleQuote": true
}
}