forked from vivaxy/design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "design",
"version": "0.0.0",
"description": "Design demos",
"keywords": [
"vivaxy",
"design",
"github",
"demo",
"test",
"playground",
"codrops"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/design.git"
},
"author": "vivaxy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/design/issues"
},
"homepage": "https://github.com/vivaxy/design#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@vivaxy/github-demo-scripts": "^0.5.0",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"standard-version": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "gds && git add . && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
"prettier --write",
"git add"
]
},
"gds": {
"readme-prefix": "# [Design](https://vivaxy.github.io/design/)",
"link-prefix": "https://vivaxy.github.io/design/"
}
}