forked from wangdoc/es6-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 903 Bytes
/
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
{
"name": "es6-tutorial",
"version": "1.0.0",
"description": "《ECMAScript 6 教程》是一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "loppo --site \"ES6 教程\" --id es6 --theme wangdoc",
"build-and-commit": "npm run build && npm run commit",
"commit": "gh-pages --dist dist --dest dist/es6 --branch master --repo git@github.com:wangdoc/website.git",
"chapter": "loppo chapter",
"server": "loppo server"
},
"husky": {
"hooks": {
"pre-push": "npm update"
}
},
"keywords": [
"wangdoc",
"es6",
"tutorial"
],
"author": "Ruan yifeng",
"license": "ICC BY-SA 4.0",
"dependencies": {
"gh-pages": "^3.2.3",
"husky": "^4.3.8",
"loppo": "^0.6.24",
"loppo-theme-wangdoc": "^0.6.1"
}
}