-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "@purple/serverless-monitoring-plugin",
"version": "2.0.0",
"engines": {
"node": ">=12"
},
"author": "Filip Pyrek <[email protected]>",
"description": "Serverless Framework Plugin which generates dashboards for different resources",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test:lint": "eslint ./src/**/*.js",
"test:lint:fix": "npm run test:lint -- --fix",
"release:changelog": "standard-version",
"release:publish": "git push --follow-tags && npm publish --access public",
"prepare": "husky install"
},
"homepage": "https://github.com/purple-technology/serverless-monitoring-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/purple-technology/serverless-monitoring-plugin.git"
},
"bugs": {
"url": "https://github.com/purple-technology/serverless-monitoring-plugin/issues"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"standard-version": "^9.3.1"
},
"lint-staged": {
"src/**/*.js": [
"eslint"
]
}
}