-
-
Notifications
You must be signed in to change notification settings - Fork 578
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "promises-book",
"description": "Promises book(japanese).",
"version": "2.0.0",
"homepage": "https://github.com/azu/promises-book",
"repository": {
"type": "git",
"url": "https://github.com/azu/promises-book.git"
},
"main": "index.js",
"scripts": {
"build": "gulp build-js build-css",
"build-js-min": "gulp build-js-min",
"embed": "gulp embed",
"lint-html": "gulp lint-html",
"eslint": "eslint \"Ch*/{lib,src,test}/**/*.js\"",
"eslint:fix": "eslint \"Ch*/{lib,src,test}/**/*.js\" --fix",
"textlint": "textlint \"Appendix-*/**/*.adoc\" \"Ch*/**/*.adoc\"",
"textlint:fix": "textlint --fix \"Appendix-*/**/*.adoc\" \"Ch*/**/*.adoc\"",
"test": "npm-run-all -p unittest eslint textlint",
"unittest": "mocha \"./Ch**/test/*.js\" \"test/doctest.js\""
},
"directories": {
"test": "Ch*/test/"
},
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/promises-book/issues"
},
"dependencies": {
"codemirror": "^5.46.0",
"codemirror-console-ui": "^2.0.5",
"core-js-pure": "^3.2.1",
"npm-run-all": "^4.1.5",
"w3c-xmlhttprequest": "^2.1.3",
"ypromise": "^0.3.0"
},
"devDependencies": {
"@power-doctest/asciidoctor": "^5.3.3",
"@power-doctest/javascript": "^5.3.3",
"@power-doctest/tester": "^5.3.3",
"@textlint-ja/textlint-rule-no-synonyms": "^1.3.0",
"brfs": "^2.0.2",
"browserify": "^16.5.0",
"cheerio": "^0.22.0",
"eslint": "^8.32.0",
"espower-loader": "^1.0.0",
"esprima": "^4.0.1",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-inlining-node-require": "0.1.1",
"gulp-rename": "~1.4.0",
"handlebars": "^4.4.3",
"inlining-node-require": "^0.2.0",
"intelli-espower-loader": "^1.0.0",
"minifyify": "^7.0.1",
"mocha": "^6.2.1",
"nock": "^11.4.0",
"power-assert": "^1.6.1",
"promise-test-helper": "^0.2.1",
"q": "^1.5.1",
"q-io": "^1.13.6",
"rel-to-abs": "^0.1.0",
"sinon": "^1.9.0",
"sudachi-synonyms-dictionary": "^4.1.0",
"textlint": "^13.0.3",
"textlint-plugin-asciidoctor": "^1.0.3",
"textlint-rule-eslint": "4.0.1",
"textlint-rule-prh": "^5.2.1",
"through2": "^3.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
}
}