-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 880 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "json-ts",
"version": "1.6.4",
"description": "Automatically generate Typescript Definition files or Flow types from JSON input",
"dependencies": {
"get-stdin": "^5.0.1",
"immutable": "^3.8.1",
"minimist": "^1.2.0",
"needsquotes": "^1.0.0",
"transducers-js": "^0.4.174",
"typescript": "^2.3.2"
},
"keywords": [
"json",
"typescript",
"flow",
"types",
"interfaces"
],
"scripts": {
"test": "tsc && jest --runInBand",
"prepublish": "npm test"
},
"bin": {
"json-ts": "dist/bin.js"
},
"files": [
"dist",
"src",
"_.js"
],
"repository": "shakyshane/json-ts",
"main": "dist/index.js",
"devDependencies": {
"@types/node": "^7.0.18",
"browserify": "^14.3.0",
"exorcist": "^0.4.0",
"jest": "22",
"source-map-support": "^0.4.15",
"uglify-js": "^3.0.10"
}
}