-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "esdoc-publish-html-plugin",
"version": "1.1.1",
"description": "A publish HTML plugin for ESDoc",
"author": "h13i32maru",
"homepage": "https://github.com/esdoc/esdoc-plugins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/esdoc/esdoc-plugins"
},
"dependencies": {
"cheerio": "0.22.0",
"fs-extra": "1.0.0",
"escape-html": "1.0.3",
"babel-generator": "6.11.4",
"ice-cap": "0.0.4",
"marked": "0.3.19",
"taffydb": "2.7.2"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.11.5",
"babel-register": "6.11.6",
"esdoc": "^1.1.0",
"esdoc-accessor-plugin": "^1.0.0",
"esdoc-brand-plugin": "^1.0.0",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-integrate-manual-plugin": "^1.0.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-type-inference-plugin": "^1.0.1",
"esdoc-undocumented-identifier-plugin": "^1.0.0",
"esdoc-unexported-identifier-plugin": "^1.0.0",
"mocha": "2.5.3"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"build": "rm -rf ./out/src && babel --out-dir out/src --ignore 'Builder/template' src && cp -a src/Builder/template out/src/Builder/",
"test": "rm -rf ./test/fixture/out && mocha -t 10000 --require ./node_modules/babel-register --require ./test/src/init.js --recursive ./test/src -R spec"
},
"keywords": [
"esdoc",
"publish",
"html",
"plugin"
],
"files": [
"out/src",
"README.md"
],
"main": "out/src/Plugin.js"
}