forked from twilio-labs/serverless-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
54
55
{
"name": "@twilio-labs/serverless-toolkit",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"postbootstrap": "lerna run build",
"release": "lerna version --conventional-commits --no-commit-hooks --no-push",
"publish": "lerna publish from-git",
"cm": "git-cz",
"jest": "jest",
"build:noemit": "lerna run build:noemit",
"clean": "lerna run clean",
"test": "run-s build:noemit jest",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"lint-staged": "lint-staged",
"docs": "lerna run docs"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/jest": "^24.0.15",
"all-contributors-cli": "^5.3.0",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^3.0.0",
"jest": "^26.2.2",
"jest-express": "^1.10.1",
"lerna": "^3.22.1",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint-staged test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}