-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
110 lines (110 loc) · 2.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "serverless-ssm-publish",
"version": "1.7.0",
"description": "Serverless Framework plugin to publish data to AWS SSM Parameter Store",
"author": "MySense",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysense-ai/ServerlessPlugin-SSMPublish/issues"
},
"homepage": "https://github.com/mysense-ai/ServerlessPlugin-SSMPublish#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.14.8"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/mysense-ai/ServerlessPlugin-SSMPublish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"serverless",
"serverless framework",
"serverless plugin",
"serverless plugins",
"serverless applications",
"amazon web services",
"aws",
"aws ssm",
"aws parameter store",
"amazon",
"amazon web services",
"serverless.com",
"git"
],
"main": "build/index.js",
"module": "./build",
"files": [
"build",
"src"
],
"scripts": {
"check:updates": "npx npm-check-updates",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:build": "jest -c '{}' build",
"test:coverage": "jest --coverage",
"codecov": "chmod +x scripts/codecov.bash && ./scripts/codecov.bash",
"semantic-release": "semantic-release",
"build": "chmod +x scripts/build.bash && ./scripts/build.bash",
"build:ci": "tsc"
},
"dependencies": {
"chalk": "^4.1.0",
"js-yaml": "^3.14.0",
"markdown-table": "^2.0.0",
"prompt": "^1.0.0",
"serverless": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/aws-lambda": "^8.10.64",
"@types/jest": "^26.0.14",
"@types/js-yaml": "^3.12.5",
"@types/markdown-table": "^2.0.0",
"@types/node": "^14.11.8",
"@types/serverless": "^1.78.2",
"aws-sdk": "^2.771.0",
"aws-sdk-mock": "^5.1.0",
"codecov": "^3.8.0",
"commitizen": "^4.2.1",
"cross-env": "7.0.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"jest-environment-node": "^26.5.2",
"lint-staged": "^10.4.0",
"semantic-release": "^17.2.1",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.2",
"typescript": "^4.0.3"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}