forked from mstrandgren/typson
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
65
66
67
68
69
{
"name": "typson",
"version": "0.6.0",
"description": "generates json-schema from TypeScript declarations",
"homepage": "https://github.com/lbovet/typson",
"author": {
"name": "Laurent Bovet",
"email": "laurent.bovet@windmaster.ch",
"url": "https://github.com/lbovet"
},
"contributors": [
{
"name": "Olivier von Dach",
"url": "https://github.com/vondacho"
},
{
"name": "Martin Berg",
"url": "https://github.com/hmartinberg"
},
{
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lbovet/typson.git"
},
"license": {
"type": "Apache 2.0",
"url": "https://raw.github.com/lbovet/typson/master/LICENSE.txt"
},
"keywords": [
"typescript",
"json",
"schema"
],
"engines": {
"node": ">= 0.10.0"
},
"preferGlobal": true,
"main": "./lib/typson-schema.js",
"bin": {
"typson": "./bin/typson"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"underscore": "1.5.x",
"q": "0.9.x",
"superagent": "0.15.x",
"requirejs": "2.1.x",
"traverse": "0.6.x"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.8.0",
"jshint-path-reporter": "~0.1.3",
"mocha-unfunk-reporter": "~0.4.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-mocha": "~0.4.10",
"grunt-mocha-test": "~0.9.0",
"mkdirp": "~0.3.5",
"chai": "~1.9.0"
}
}