-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "learn-source-code",
"version": "0.0.1",
"description": "vue,react 等框架源码学习",
"main": "index.js",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs",
"commit": "git-cz",
"release": "standard-version",
"deploy": "gh-pages -d dist",
"deploy:build": "npm run build && gh-pages -d dist"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/niexia/learn-source-code.git"
},
"keywords": [
"vue",
"react"
],
"author": "niexia",
"license": "MIT",
"bugs": {
"url": "https://github.com/niexia/learn-source-code/issues"
},
"homepage": "https://github.com/niexia/learn-source-code#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vuepress/plugin-back-to-top": "^1.3.0",
"@vuepress/plugin-pwa": "^1.3.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"standard-version": "^7.1.0",
"vuepress": "^1.8.2"
}
}