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
|
{
"private": true,
"devDependencies": {
"eslint": "3.12.2",
"eslint-config-gitbook": "1.5.0",
"lerna": "2.0.0-beta.31"
},
"scripts": {
"lint": "eslint .",
"test": "lerna run --concurrency 1 test",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"dist": "lerna run --concurrency 1 prepublish",
"publish-version": "./scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GitbookIO/gitbook.git"
},
"author": "GitBook Inc. <contact@gitbook.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/gitbook/issues"
},
"homepage": "https://github.com/GitbookIO/gitbook#readme"
}
|