forked from serverless/serverless-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.79 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
80
81
82
83
84
85
86
{
"name": "@praos-health/serverless-plugin-typescript",
"version": "2.1.6",
"license": "MIT",
"main": "dist/src/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepare-release": "standard-version",
"prepublish": "npm run build",
"precommit": "npm run test",
"pretest": "npm run lint",
"test": "jest"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Maintenance Improvements"
}
]
},
"repository": "serverless/serverless-plugin-typescript",
"keywords": [
"serverless",
"serverless plugin",
"typescript",
"aws lambda"
],
"devDependencies": {
"@types/fs-extra": "5.0.5",
"@types/jest": "24.0.12",
"@types/lodash": "4.14.123",
"@types/node": "12.6.2",
"github-release-from-cc-changelog": "^2.3.0",
"jest": "24.5.0",
"mock-fs": "4.9.0",
"rimraf": "2.6.3",
"standard-version": "^9.5.0",
"ts-jest": "24.0.2",
"tslint": "5.14.0",
"typescript": "^4.9.5"
},
"dependencies": {
"fs-extra": "^7.0.1",
"globby": "^10.0.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"serverless": "2 || 3",
"typescript": ">=2.2.2"
},
"jest": {
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"engines": {
"node": ">=10.0"
}
}