-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.2 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
{
"name": "esdoc-plugin-dependency-graphs",
"version": "0.1.0",
"homepage": "https://github.com/typhonjs-node-esdoc/esdoc-plugin-dependency-graphs/",
"description": "A plugin for ESDoc that adds interactive D3 powered dependency graphs for source code including linking JSPM / NPM managed code and packages.",
"license": "MPL-2.0",
"author": {
"name": "Mike Leahy"
},
"repository": {
"type": "git",
"url": "https://github.com/typhonjs-node-esdoc/esdoc-plugin-dependency-graphs.git"
},
"maintainers": [
{
"name": "Mike Leahy",
"email": "support@typhonjs.io"
}
],
"dependencies": {
"cheerio": "^0.20.0",
"fs-extra": "^0.30.0",
"ice-cap": "^0.0.4",
"taffydb": "^2.0.0",
"underscore": "^1.0.0"
},
"devDependencies": {
"jspm": "^0.16.0",
"typhonjs-config-eslint": "^0.4.0",
"typhonjs-npm-build-test": "^0.1.0"
},
"engines": {
"npm": ">=3.x"
},
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"esdoc": "esdoc -c .esdocrc",
"eslint": "eslint .",
"prepublish": "babel-node ./node_modules/typhonjs-npm-scripts-publish/scripts/prepublish.js",
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js"
},
"jspm": {
"directories": {},
"dependencies": {
"backbone": "github:typhonjs-backbone-parse/backbone-parse-es6@master"
},
"devDependencies": {
"babel": "npm:babel-core@^5.0.0",
"babel-runtime": "npm:babel-runtime@^5.0.0",
"core-js": "npm:core-js@^1.0.0"
}
},
"typhonjs": {
"scm": {
"autoInstallJSPM": false
}
},
"keywords": [
"esdoc",
"jsdoc",
"jspm",
"systemjs",
"plugin",
"package",
"dependency",
"graph",
"document",
"documentation",
"ES6",
"ES2015",
"ECMAScript6",
"ECMAScript2015"
],
"main": "dist/plugin.js",
"files": [
"dist",
"src",
"template",
"AUTHORS.md"
],
"directories": {},
"bugs": {
"url": "https://github.com/typhonjs-node-esdoc/esdoc-plugin-dependency-graphs/issues"
}
}