-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dts-bundle",
"version": "0.7.3",
"description": "Export TypeScript .d.ts files as an external module definition",
"keywords": [
"typescript",
"definition",
"bundle",
"export",
"d.ts"
],
"bin": {
"dts-bundle": "./lib/dts-bundle.js"
},
"homepage": "https://github.com/grunt-ts/dts-bundle",
"repository": {
"type": "git",
"url": "https://github.com/grunt-ts/dts-bundle.git"
},
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/grunt-ts/dts-bundle/master/LICENSE-MIT.txt"
}
],
"bugs": {
"url": "https://github.com/grunt-ts/dts-bundle/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"main": "./index.js",
"dependencies": {
"@types/detect-indent": "0.1.30",
"@types/glob": "5.0.30",
"@types/mkdirp": "0.3.29",
"@types/node": "8.0.0",
"commander": "^2.9.0",
"detect-indent": "^0.2.0",
"glob": "^6.0.4",
"mkdirp": "^0.5.0"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-fs": "0.1.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-dtsm": "1.0.0",
"grunt-mocha-test": "^0.11.0",
"grunt-ts": "^6.0.0-beta.16",
"jshint-path-reporter": "^0.1.3",
"mocha-unfunk-reporter": "^0.4.0",
"ncp": "^0.5.1",
"typescript": "^2.3.4"
}
}