-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "typescript-study.github.io",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.org/Microsoft/TypeScript-Handbook.svg)](https://travis-ci.org/Microsoft/TypeScript-Handbook)",
"main": "index.js",
"dependencies": {
"gitbook-cli": "^2.3.2",
"gitbook-plugin-addcssjs": "^1.0.2",
"gitbook-plugin-custom-favicon": "^0.0.4",
"gitbook-plugin-favicon": "^0.0.2",
"gitbook-plugin-forkmegithub": "^2.2.0",
"gitbook-plugin-ga": "^1.0.0",
"gitbook-plugin-highlight-1": "^2.0.3",
"gitbook-plugin-sitemap": "^1.2.0",
"gitbook-plugin-sitemap-general": "^0.1.1",
"gitbook-plugin-theme-darkblue": "^1.0.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"glob": "^7.1.6",
"husky": "^4.2.5",
"markdownlint-cli": "^0.22.0",
"typescript": "^3.8.3"
},
"scripts": {
"prebuild": "rm -rf bin",
"pretest": "npm run build",
"test": "npx markdownlint . && node ./bin/lint '**/*.md'",
"lint": "npm run test",
"lint-beta": "npm run build && node ./bin/lint '**/*.md'",
"build": "npx tsc",
"build:gitbook": "npx gitbook build",
"serve:gitbook": "npx gitbook serve"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/typescript-kr/typescript-kr.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/typescript-kr/typescript-kr.github.io/issues"
},
"homepage": "https://github.com/typescript-kr/typescript-kr.github.io#readme"
}