-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@aligent/serverless-conventions",
"version": "1.0.0",
"description": "A Serverless framework plugin to enforce various formatting conventions to maintain consistency within Serverless applications.",
"main": "lib/index.js",
"types": "index.d.ts",
"jest": {
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/serverless": "^3.12.28",
"jest": "^30.0.5",
"ts-jest": "29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"serverless": "3.x || 4.x"
},
"engines": {
"node": ">=24.0.0"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"change-case": "^4.1.2"
}
}