forked from horiuchi/dtsgenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "@ssjs/dtsgenerator",
"version": "0.1.5",
"description": "TypeScript d.ts file generator for JSON Schema file",
"main": "index.js",
"bin": {
"dtsgen": "./bin/dtsgen"
},
"scripts": {
"build": "gulp default",
"test": "gulp test"
},
"directories": {
"test": "test/"
},
"keywords": [
"TypeScript",
"JSON Schema"
],
"author": "horiuchi",
"license": {
"type": "MIT",
"url": "http://horiuchi.mit-license.org/"
},
"homepage": "https://github.com/horiuchi/dtsgenerator",
"repository": {
"type": "git",
"url": "[email protected]:horiuchi/dtsgenerator.git"
},
"bugs": {
"url": "https://github.com/horiuchi/dtsgenerator/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"asyncblock": "^2.1.23",
"commander": "^2.5.0",
"glob": "^5.0.14",
"json-pointer": "^0.3.0",
"mkdirp": "^0.5.0"
},
"devDependencies": {
"coveralls": "^2.11.3",
"del": "^1.2.0",
"gulp": "^3.8.10",
"gulp-coveralls": "^0.1.4",
"gulp-espower": "^0.10.0",
"gulp-istanbul": "^0.10.0",
"gulp-load-plugins": "^0.10.0",
"gulp-mocha": "^2.0.0",
"gulp-sourcemaps": "^1.2.8",
"gulp-tsd": "0.0.4",
"gulp-typescript": "^2.3.0",
"gulp-util": "^3.0.1",
"mocha": "^2.0.1",
"power-assert": "^0.11.0",
"run-sequence": "^1.0.2",
"source-map-support": "^0.3.2",
"typescript": "^1.3.0"
}
}