-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.15 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
{
"name": "tjsdoc",
"version": "0.0.1",
"description": "A forthcoming modern JS documentation system for ES6+ and Typescript.",
"author": "typhonrt",
"homepage": "https://tjsdoc.typhonjs.io/",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/typhonjs-node-tjsdoc/tjsdoc"
},
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"eslint": "eslint .",
"dev-test": "BABEL_ENV=tjsdoc-dev babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js dev_test",
"dev-test-coverage": "BABEL_ENV=tjsdoc-dev babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js dev_test",
"dev-test-npm": "BABEL_ENV=tjsdoc-dev babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js dev_test_npm",
"dev-tjsdoc": "BABEL_ENV=tjsdoc-dev babel-node ./src/TJSDocCLI.js -c .tjsdocrc-local",
"prepublish": "babel-node ./node_modules/typhonjs-npm-scripts-publish/scripts/prepublish.js"
},
"dependencies": {
"babel-polyfill": "^6.0.0",
"babel-runtime": "^6.0.0",
"backbone-esnext-eventbus": "^0.3.0",
"minimist": "^1.0.0",
"strip-json-comments": "^2.0.0",
"typhonjs-color-logger": "<=0.1.0",
"typhonjs-plugin-manager": "^0.2.0"
},
"devDependencies": {
"tjsdoc-test-utils": "git+https://git@github.com/typhonjs-node-tjsdoc/tjsdoc-test-utils.git",
"tjsdoc-tests-ecmascript": "git+https://git@github.com/typhonjs-node-tjsdoc/tjsdoc-tests-ecmascript.git",
"typhonjs-config-eslint": "^0.5.0",
"typhonjs-npm-build-test": "^0.7.0"
},
"keywords": [
"typhonjs",
"javascript", "JS",
"typescript", "TS",
"jsdoc",
"api",
"document",
"documentation",
"ES6", "ECMAScript6", "ES2015", "ECMAScript2015",
"ES7", "ECMAScript7", "ES2016", "ECMAScript2016",
"ES8", "ECMAScript8", "ES2017", "ECMAScript2017"
],
"files": [
"dist",
"manual",
"src",
".tjsdocrc",
"AUTHORS.md"
],
"main": "dist/TJSDoc.js",
"bin": {
"esdoc": "dist/TJSDocCLI.js"
},
"bugs": {
"url": "https://github.com/typhonjs-node-tjsdoc/tjsdoc/issues"
}
}