forked from asciidwango/js-primer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "js-primer",
"private": true,
"license": "MIT",
"version": "1.0.0",
"description": "JavaScriptの入門本",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "npm run install:gitbook",
"install:gitbook": "gitbook install",
"start": "gitbook serve",
"build": "gitbook build",
"postbuild": "npm-run-all build:add-resource workbox",
"workbox": "workbox injectManifest workbox-config.js",
"build:add-resource": "node tools/gitbook/copy-favicon.js",
"eslint": "eslint source/ --cache",
"eslint:fix": "eslint --fix source/ --cache",
"textlint": "summary-to-path ./source/README.md | xargs textlint -f pretty-error --cache",
"textlint:no-cached": "summary-to-path ./source/README.md | xargs textlint -f pretty-error",
"textlint:fix": "summary-to-path ./source/README.md | xargs textlint --fix --cache",
"lint": "npm-run-all --parallel textlint eslint",
"lint:fix": "npm-run-all --parallel textlint:fix eslint:fix",
"test:example": "mocha test/",
"test:basic": "mocha './source/basic/**/*-test.js'",
"test:ajaxapp": "mocha './source/use-case/ajaxapp/!(node_modules)**/*-test.js'",
"test:todoapp": "cd ./source/use-case/todoapp && npm install && npm test",
"e2e:todoapp": "cd ./source/use-case/todoapp && npm install && npm run e2e",
"test": "npm-run-all -l --parallel test:* lint",
"e2e": "npm-run-all -l --parallel e2e:*",
"travis": "npm-run-all -l --parallel test build",
"build:applescript": "tsc -p tools/applescript"
},
"keywords": [
"gitbook",
"textlint"
],
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"@jxa/global-type": "^1.0.1",
"@jxa/run": "^1.0.3",
"@textlint-rule/textlint-rule-no-invalid-control-character": "^1.0.1",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@textlint-rule/textlint-rule-require-header-id": "^1.0.1",
"@types/meow": "^4.0.1",
"@types/node": "^9.6.7",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"babel-preset-jsdoc-to-assert": "^4.0.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.7.2",
"consolemock": "^1.1.0",
"eslint": "^5.6.1",
"esprima": "^4.0.0",
"esquery": "^1.0.0",
"front-matter": "^2.1.0",
"gitbook-cli": "^2.1.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-canonical-link": "^2.0.2",
"gitbook-plugin-custom-favicon": "0.0.4",
"gitbook-plugin-ga": "^1.0.0",
"gitbook-plugin-github-issue-feedback": "^1.1.1",
"gitbook-plugin-include-codeblock": "^3.0.0",
"gitbook-plugin-js-console": "^1.4.2",
"gitbook-plugin-page-toc-button": "^0.1.1",
"gitbook-plugin-todo": "^0.1.3",
"gitbook-summary-to-path": "^1.0.1",
"globby": "^6.0.0",
"js-levenshtein": "^1.1.3",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"lodash": "^4.17.10",
"meow": "^5.0.0",
"mocha": "^4.0.0",
"npm-run-all": "^4.0.0",
"power-assert": "^1.3.1",
"power-doctest": "^1.4.0",
"remark": "^8.0.0",
"rewire": "^2.5.2",
"strict-eval": "^1.0.2",
"text-testing-mocha": "^0.4.0",
"textlint": "^11.0.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-filter-rule-whitelist": "^2.0.0",
"textlint-rule-eslint": "^3.0.0",
"textlint-rule-max-comma": "^1.0.4",
"textlint-rule-no-js-function-paren": "^1.0.1",
"textlint-rule-period-in-list-item": "^0.2.0",
"textlint-rule-preset-ja-technical-writing": "^3.1.0",
"textlint-rule-prh": "^5.0.1",
"typescript": "^2.8.3",
"unist-util-find-all-between": "^1.0.1",
"unist-util-find-before": "^2.0.1",
"unist-util-parents": "^1.0.0",
"unist-util-select": "^1.5.0",
"vm2": "^3.4.6",
"workbox-cli": "^3.2.0"
},
"dependencies": {}
}