-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "typescript-closure-tools",
"version": "0.0.7",
"description": "Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files",
"author": "George Fraser",
"contributors": [
"Benjamin P. Jung <[email protected]>"
],
"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": {
"@types/node": "^10.12.2",
"jasmine-node": "*",
"browserify": "*"
},
"scripts": {
"prepublish": "tsc --target ES6 --module commonjs definition-generator/src/*.ts && tsc --target ES6 --module commonjs externs-generator/src/*.ts"
},
"bin": {
"ts2externs": "./externs-generator/src/cli.js",
"closure2ts": "./definition-generator/src/cli.js"
}
}