-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 730 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 730 Bytes
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
{
"name": "typescript-guidebook",
"version": "1.0.0",
"description": "A technical mannual about TypeScript knowledge",
"main": "index.js",
"scripts": {
"start": "yarn run dev",
"dev": "yarn run dumi dev --port=8080",
"lint:md": "lint-md *.md",
"lint:fix": "lint-md *.md --fix",
"build": "yarn run dumi build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsejx/typescript-guidebook.git"
},
"keywords": [
"typescript",
"documentation"
],
"author": "tsejx",
"license": "MIT",
"homepage": "https://tsejx.github.io/typescript-guidebook/",
"devDependencies": {
"babel-plugin-import": "^1.13.0",
"dumi": "^1.0.20",
"lint-md": "^0.2.0"
}
}