-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "kapian.io",
"version": "1.2.0",
"description": "如何使用卡片进行内容创作?",
"main": "index.js",
"scripts": {
"test": "test --passWithNoTests",
"docs:serve": "docsify serve ./docs",
"docs:publish": "gh-pages --repo git@github.com:hackdapp/kapian.io.git -u 'hackdapp <hackdapp@gmail.com>' --dist docs --dotfiles --message 'chore: Publish docs'",
"release": "npm-run-all \"docs:publish {@}\" release:publish --",
"release:publish": "standard-version"
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"bracketSpacing": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{json,md,html,yml,css}": [
"prettier --ignore-path .eslintignore --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackdapp/kapian.io.git"
},
"keywords": [
"write",
"card",
"creative"
],
"author": "hackdapp",
"license": "ISC",
"bugs": {
"url": "https://github.com/hackdapp/kapian.io/issues"
},
"homepage": "https://github.com/hackdapp/kapian.io#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"docsify-cli": "^4.4.1",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"standard-version": "^8.0.1",
"dot-prop": "^5.1.1"
}
}