forked from SitePen/dts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 889 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
{
"name": "dts-generator",
"description": ".d.ts generator. Generates a single d.ts bundle containing external modules from TypeScript files.",
"version": "1.8.0-pre",
"bugs": {
"url": "https://github.com/SitePen/dts-generator/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/SitePen/dts-generator.git"
},
"bin": {
"dts-generator": "bin/dts-generator"
},
"dependencies": {
"bluebird": "3.3.3",
"glob": "7.0.0",
"mkdirp": "0.5.1",
"typescript": "^2.1.4"
},
"devDependencies": {
"dojo-loader": ">=2.0.0-beta.5",
"intern": "~3.0.0",
"tsd": "0.6.5",
"tslint": "3.11.0",
"typescript": "~2.0.3"
},
"scripts": {
"prepublish": "tsc --module umd --target es5 --moduleResolution node typings/tsd.d.ts index.ts bin/dts-generator.ts",
"test": "tests/run.sh"
}
}