forked from typicode/husky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 949 Bytes
/
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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "del-cli \"packages/**/lib\" && lerna exec -- tsc && cpy --cwd=./packages/husky src/husky.sh lib",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "sh test/_run_all.sh",
"serve": "docsify serve docs",
"prepare": "npm run build && node packages/husky/lib/bin.js install"
},
"author": "Typicode <typicode@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/prompt-cli": "^12.0.1",
"@tsconfig/node10": "^1.0.7",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typicode/eslint-config": "^0.1.2",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.1",
"docsify-cli": "^4.4.3",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}