-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
40 lines (40 loc) · 1.49 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
{
"name": "guide",
"version": "1.0.0",
"description": "Japanese version of guide.elm-lang.org",
"main": "index.js",
"dependencies": {
"cpx": "1.5.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-bulk-redirect": "^0.2.1",
"gitbook-plugin-elm-repl": "file:repl",
"gitbook-plugin-ga": "^1.0.1",
"gitbook-plugin-meta": "^0.1.12",
"gitbook-plugin-sitemap": "^1.2.0",
"gitbook-plugin-youtube": "^1.1.0",
"pretranslate": "file:tool/pretranslate",
"replace": "1.1.1",
"rimraf": "^2.6.2"
},
"devDependencies": {
"node": "10.23.0"
},
"scripts": {
"postinstall": "npm run install-gitbook && npm run install-repl",
"install-gitbook": "replace --silent ',\"elm-repl\"' '' book.json && gitbook install && replace --silent '\"youtube\"' '\"youtube\",\"elm-repl\"' book.json",
"install-repl": "cd repl && npm link && npm i && npm run build && cd ../ && npm link gitbook-plugin-elm-repl",
"start": "gitbook --port 8007 serve",
"build": "rimraf _book && rimraf docs && gitbook build && mv _book docs && rimraf docs/**/*.md && replace --silent '検索すると入力' '検索' docs/*.html docs/**/*.html && cpx favicon.ico _book/gitbook/images/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elm-jp/guide.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/elm-jp/guide/issues"
},
"homepage": "https://github.com/elm-jp/guide#readme"
}