-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "serverless-provisioned-concurrency-autoscaling",
"version": "2.0.1",
"description": "Serverless Plugin for AWS Lambdas Provisioned Concurrency Auto Scaling Configuration.",
"main": "./lib/index.js",
"files": [
"lib"
],
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/helpers/"
],
"collectCoverageFrom": [
"src/aws/**/*",
"src/{!(index),}.ts"
]
},
"scripts": {
"build": "tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest --silent",
"test:coverage": "jest --coverage --silent",
"test:cache": "jest --clearCache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neiman-marcus/serverless-provisioned-concurrency-autoscaling.git"
},
"keywords": [
"serverless",
"sls",
"plugin",
"provisioned",
"concurrency",
"provisioned concurrency",
"cloudformation",
"autoscaling",
"auto-scaling",
"amazon",
"aws",
"typescript"
],
"author": "Clay Danford <crd013@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neiman-marcus/serverless-provisioned-concurrency-autoscaling/issues"
},
"homepage": "https://github.com/neiman-marcus/serverless-provisioned-concurrency-autoscaling#readme",
"devDependencies": {
"@serverless/utils": "^6.15.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/serverless": "^3.12.22",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "7.4.0",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}