-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "typhen-json-schema",
"description": "Converts TypeScript Interfaces to JSON Schema",
"version": "0.5.0",
"homepage": "https://github.com/shiwano/typhen-json-schema",
"author": {
"name": "Shogo Iwano",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/shiwano/typhen-json-schema.git"
},
"bugs": {
"url": "https://github.com/shiwano/typhen-json-schema/issues"
},
"license": "MIT",
"main": "index",
"engines": {
"node": ">= 0.4.0",
"npm": ">= 1.4.0"
},
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js"
},
"devDependencies": {
"del": "^2.2.0",
"glob": "^7.0.6",
"gulp": "^3.8.11",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.1.0",
"gulp-plumber": "^1.0.0",
"gulp-spawn-mocha": "^3.1.0",
"jshint": "^2.9.1-rc1",
"mocha": "^3.0.2",
"rimraf": "^2.3.2",
"run-sequence": "^1.0.2",
"tv4": "^1.1.9",
"tv4-formats": "^2.2.0",
"typhen": "^1.2.8"
},
"keywords": [
"typescript",
"typhen",
"jsonschema"
],
"dependencies": {
"inflection": "^1.7.0",
"jsesc": "^1.3.0",
"lodash": "^4.15.0"
}
}