forked from jumpinjackie/jsdoc-typescript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.42 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
{
"name": "jsdoc-typescript-plugin",
"version": "0.0.1",
"description": "A JSDoc plugin to generate a TypeScript definition file (.d.ts) from annotated JSDoc sources",
"scripts": {
"build": "tsc",
"example-doc": "jsdoc ./examples/jsdoc3-examples -r -c ./configs/jsdoc.json -d ./docs/example",
"ol-doc": "jsdoc -c ./configs/jsdoc.ol.json -d ./docs/ol",
"cesium-doc": "jsdoc -c ./configs/jsdoc.cesium.json -d ./docs/cesium",
"misc-doc": "jsdoc -c ./configs/jsdoc.misc.json -d ./docs/misc",
"bad-doc": "jsdoc -c ./configs/jsdoc.bad.json -d ./docs/bad",
"test:misc": "npm run misc-doc && tsc ./typings/misc.d.ts",
"test:cesium": "npm run cesium-doc && tsc ./typings/cesium.d.ts && tsc test/cesium-tests.ts",
"test:ol": "npm run ol-doc && tsc ./typings/openlayers.d.ts && tsc test/openlayers-tests.ts",
"test": "npm run build && npm run test:misc && npm run test:ol && npm run test:cesium"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jumpinjackie/jsdoc-typescript-plugin.git"
},
"keywords": [
"jsdoc",
"typescript"
],
"author": "Jackie Ng",
"license": "MIT",
"bugs": {
"url": "https://github.com/jumpinjackie/jsdoc-typescript-plugin/issues"
},
"homepage": "https://github.com/jumpinjackie/jsdoc-typescript-plugin#readme",
"devDependencies": {
"cesium": "1.27.0",
"jsdoc": "^3.4.3",
"openlayers": "3.20.1",
"typescript": "^2.1.4"
}
}