forked from SitePen/dts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 857 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
{
"name": "dts-generator",
"description": ".d.ts generator. Generates a single d.ts bundle containing external modules from TypeScript files.",
"version": "2.1.0",
"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"
},
"devDependencies": {
"dojo-loader": ">=2.0.0-beta.5",
"intern": "~3.0.0",
"tsd": "0.6.5",
"tslint": "3.11.0",
"typescript": "^2.1.4"
},
"scripts": {
"prepublish": "tsc --module umd --target es5 --moduleResolution node typings/tsd.d.ts index.ts bin/dts-generator.ts",
"test": "tests/run.sh"
}
}