forked from brettle/jsdoc-to-typescript-declaration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 874 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
{
"name": "typescript-closure-tools",
"version": "0.0.3",
"description": "Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files",
"author": "George Fraser",
"keywords": [
"TypeScript",
"Closure"
],
"repository": {
"type": "git",
"url": "https://github.com/fivetran/typescript-closure-tools"
},
"preferGlobal": true,
"dependencies": {
"esprima": "*",
"escodegen": "*",
"jsdoc": "*",
"doctrine": "fivetran/doctrine",
"mkdirp": "*",
"colors": "*"
},
"devDependencies": {
"jasmine-node": "*",
"browserify": "*"
},
"bin": {
"ts2externs": "./externs-generator/src/cli.js",
"closure2ts": "./definition-generator/src/cli.js"
}
}