forked from azu/JavaScript-Plugin-Architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "plugin-design-patterns",
"repository": {
"type": "git",
"url": "https://github.com/azu/plugin-design-patterns.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/azu/plugin-design-patterns",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/plugin-design-patterns/issues"
},
"version": "0.1.1",
"description": "JavaScript plugin design pattens book.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "gitbook install",
"start": "gitbook serve",
"build": "gitbook build",
"eslint": "eslint src/**/*.js",
"eslint:md": "eslint --ext .md ja/**/*.md",
"textlint": "summary-to-path | xargs textlint --rule spellcheck-tech-word",
"test": "mocha --recursive && npm run textlint && npm run eslint:md && npm run eslint && npm run build"
},
"keywords": [
"plugin",
"extension"
],
"devDependencies": {
"eslint": "^1.3.0",
"eslint-plugin-markdown": "git://github.com/eslint/eslint-plugin-markdown.git",
"espower-babel": "^3.3.0",
"gitbook-cli": "^0.3.4",
"gitbook-plugin-richquotes": "0.0.5",
"gitbook-summary-to-path": "^1.0.1",
"jsdom": "^3.0.0",
"mocha": "^2.2.5",
"power-assert": "^1.0.0",
"textlint": "^3.2.0",
"textlint-rule-spellcheck-tech-word": "^4.0.1"
},
"dependencies": {
"jquery": "^2.1.4"
}
}