forked from jkchao/typescript-book-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "typescript-book-chinese",
"version": "1.0.0",
"description": "typescript-book-chinese",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs",
"precommit": "lint-staged",
"contributor:add": "all-contributors add",
"contributor:generate": "all-contributors generate"
},
"lint-staged": {
"linters": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"ignore": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkchao/typescript-book-chinese.git"
},
"keywords": [
"typescript",
"vue"
],
"author": "jkchao",
"license": "ISC",
"bugs": {
"url": "https://github.com/jkchao/typescript-book-chinese/issues"
},
"homepage": "https://github.com/jkchao/typescript-book-chinese#readme",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-angular": "^7.5.0",
"@vuepress/plugin-back-to-top": "^1.0.0-alpha.44",
"@vuepress/plugin-container": "^1.0.0-alpha.44",
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.44",
"@vuepress/plugin-pwa": "^1.0.0-alpha.44",
"all-contributors-cli": "^5.4.0",
"eslint": "^5.6.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "1.14.2",
"vuepress": "^1.0.0-alpha.44"
},
"dependencies": {}
}