forked from englercj/tsd-jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 938 Bytes
/
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
{
"name": "tsd-jsdoc",
"version": "2.4.0",
"description": "Compiles JSDoc annotated javascript into a Typescript Declaration File (.d.ts).",
"main": "dist/publish.js",
"author": "Chad Engler <chad@pantherdev.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:englercj/jsdoc2tsd.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"prepare": "npm run build",
"test": "mocha --ui tdd -r ts-node/register test/specs/**.ts"
},
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"jsdoc-api": "^5.0.3",
"mocha": "^5.2.0",
"ts-node": "^7.0.1"
},
"peerDependencies": {
"jsdoc": "^3.6.3"
},
"dependencies": {
"typescript": "^3.2.1"
}
}