This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.62 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
{
"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 && node tools/ol-postprocess.js ./typings/ol-public.json ./typings/openlayers.d.ts",
"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": "yarn run misc-doc && tsc ./typings/misc.d.ts",
"test:cesium": "yarn run cesium-doc && tsc ./typings/cesium.d.ts && tsc test/cesium-tests.ts",
"test:ol": "yarn run ol-doc && tsc ./typings/openlayers.d.ts && tsc test/openlayers-tests.ts && tsc test/ol-tests.ts",
"test": "yarn run build && yarn run test:misc && yarn run test:ol"
},
"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": {
"@types/node": "^8.0.56",
"@types/pegjs": "^0.10.0",
"cesium": "1.27.0",
"jsdoc": "^3.5.5",
"jsonfile": "^4.0.0",
"openlayers": "4.6.2",
"pegjs": "^0.10.0",
"typescript": "2.6.2"
}
}