-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
41 lines (41 loc) · 1.02 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": "tsd-jsdoc",
"version": "2.5.0",
"description": "Compiles JSDoc annotated javascript into a Typescript Declaration File (.d.ts).",
"main": "dist/publish.js",
"author": "Chad Engler <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:englercj/jsdoc2tsd.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"prepare": "npm run build",
"test": "npm run build && mocha --ui tdd -r ts-node/register --timeout 5000 --colors 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",
"object-to-spawn-args": "^2.0.0",
"ts-node": "^7.0.1",
"walk-back": "^3.0.1"
},
"peerDependencies": {
"jsdoc": "^3.6.3"
},
"dependencies": {
"typescript": "^3.2.1"
}
}