forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"private": true,
"license": "MIT",
"author": {
"name": "Pedro Nauck",
"email": "pedronauck@gmail.com",
"url": "https://github.com/pedronauck"
},
"homepage": "https://docz.site",
"bugs": {
"url": "https://github.com/pedronauck/docz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pedronauck/docz.git"
},
"scripts": {
"clean": "lerna clean",
"bs": "lerna bootstrap",
"packages": "run-s packages:*",
"packages:fix": "lerna run fix",
"packages:lint": "lerna run tslint",
"packages:build": "lerna run build --ignore docz-example-*",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits",
"release:beta": "yarn release --npm-tag=beta --preid=beta",
"precommit": "lint-staged",
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/config-lerna-scopes": "^7.0.0",
"all-contributors-cli": "^5.2.1",
"commitizen": "^2.10.1",
"del": "^3.0.0",
"husky": "^1.0.0-rc.12",
"lerna": "^2.11.0",
"libundler": "^1.7.1",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"trash-cli": "^1.4.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx}": [
"yarn packages:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn packages:lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}