-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 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
{
"private": true,
"name": "gitbook-starter-kit",
"license": "MIT",
"version": "1.0.1",
"description": "GitBook Starter Kit.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "gitbook install",
"start": "gitbook serve",
"build": "gitbook build",
"eslint": "eslint --cache 'src/**/*.js'",
"textlint": "textlint --cache 'ja/**/*.md' -f pretty-error",
"test:js": "mocha test/",
"test": "npm-run-all --parallel test:js textlint eslint build"
},
"keywords": [
"gitbook",
"textlint"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-preset-power-assert": "^3.0.0",
"eslint": "^5.0.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-include-codeblock": "^3.0.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.0.0",
"power-assert": "^1.3.1",
"textlint": "^11.0.0",
"textlint-rule-eslint": "^3.0.0",
"textlint-rule-no-start-duplicated-conjunction": "^2.0.0",
"textlint-rule-preset-ja-technical-writing": "^3.0.0",
"textlint-rule-prh": "^5.0.0"
}
}