-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
42 lines (42 loc) · 1.13 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": "@dazn/lambda-powertools",
"private": true,
"license": "MIT",
"scripts": {
"install": "lerna bootstrap",
"test:lint": "eslint .",
"test": "jest",
"test-package": "jest --projects packages/lambda-powertools-$PKG",
"diff": "lerna diff",
"new-version": "lerna version --conventional-commits --create-release github --yes -m \"chore(release): %v [ci skip]\"",
"publish": "lerna publish from-package --yes",
"lerna": "lerna",
"docs": "gitbook build . docs"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"gitbook-cli": "^2.3.2",
"husky": "^1.3.1",
"jest": "^26.0.1",
"lerna": "^3.20.2",
"lint-staged": "^8.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}