-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.26 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
53
54
55
56
57
58
{
"name": "lambda-typescript-boilerplate",
"version": "0.0.3",
"author": "Mehdi Karamnejad",
"license": "MIT",
"description": "Boiler plate for lambda functions coded in typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "cleandir ./build",
"lint": "tslint --config tslint.json --project tsconfig.json --exclude **/node_modules/**",
"local": "node ./build/utils/localStart",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*)$",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
],
"moduleFileExtensions": [
"ts",
"js",
"jsx",
"json",
"node"
]
},
"pre-commit": [
"build",
"lint"
],
"devDependencies": {
"@types/aws-lambda": "8.10.39",
"@types/dotenv": "8.2.0",
"@types/jest": "24.0.24",
"@types/winston": "2.4.4",
"clean-dir": "1.0.3",
"jest": "24.9.0",
"pre-commit": "1.2.2",
"ts-jest": "24.2.0",
"ts-node": "8.6.2",
"tslint": "5.16.0",
"typescript": "3.7.4"
},
"engines": {
"node": "~8.17.0",
"npm": "~6.13.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"winston": "^3.2.1"
}
}