forked from SitePen/dts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 832 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": "dts-generator",
"description": ".d.ts generator. Generates a single d.ts bundle containing external modules from TypeScript files.",
"version": "3.0.1-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"
},
"scripts": {
"prepublishOnly": "tsc --module umd --target es2015 --moduleResolution node index.ts bin/dts-generator.ts",
"test": "tests/run.sh"
},
"dependencies": {
"glob": "^7.1.3",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mkdirp": "^0.5.2",
"intern": "^4.3.3",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}