generated from w4rlock/base-es6-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 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
46
47
48
49
50
51
52
53
{
"name": "template-base-serverless-plugin",
"version": "0.2.2",
"description": "Serverless plugin",
"keywords": [
"Serverless"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./",
"precommit": "lint-staged",
"lint:fix": "eslint ./ --fix",
"prettier": "prettier \"**/*.{js,jsx,css,json}\"",
"prettier:fix": "prettier \"**/*.{js,jsx,css,json}\" --write",
"format": "npm run prettier -- --write",
"validate": "npm run prettier -- --list-different && npm run lint",
"release": "standard-version -t 'release-'",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch",
"unpublish": "npx force-unpublish template-base-serverless-plugin 'npmrc remove module'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"base-serverless-plugin": "0.5.1",
"lodash": "4.17.19",
"standard-version": "8.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "8.3.4",
"babel-eslint": "10.1.0",
"commitlint": "8.3.5",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"npx": "10.2.2",
"prettier": "2.0.1",
"serverless-deployment-bucket": "1.1.2",
"standard-version": "8.0.2"
}
}