forked from glideapps/quicktype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "quicktype",
"version": "15.0.0",
"license": "Apache-2.0",
"main": "dist/cli/index.js",
"types": "dist/cli/index.d.ts",
"repository": "https://github.com/quicktype/quicktype",
"scripts": {
"pub": "script/publish.sh",
"prepare": "npm run build",
"build": "script/build.ts",
"test": "jest && script/test",
"start": "script/watch",
"pkg": "script/make-pkgs.sh",
"tslint": "tslint --project src/cli --exclude 'src/__tests__/**' --exclude 'src/cli/get-stream/**'",
"clean": "rm -rf dist node_modules *~"
},
"dependencies": {
"chalk": "^2.4.1",
"collection-utils": "^1.0.1",
"command-line-args": "^4.0.6",
"command-line-usage": "^5.0.5",
"graphql": "^0.11.7",
"is-url": "^1.2.4",
"js-base64": "^2.4.3",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"node-fetch": "^1.7.1",
"pako": "^1.0.6",
"pluralize": "^7.0.0",
"stream-json": "1.1.3",
"string-to-stream": "^1.1.0",
"@mark.probst/typescript-json-schema": "~0.32.0",
"@mark.probst/unicode-properties": "~1.1.0",
"urijs": "^1.19.1",
"uuid": "^3.2.1",
"wordwrap": "^1.0.0",
"yaml": "^1.5.0"
},
"devDependencies": {
"@types/urijs": "github:quicktype/types-urijs",
"@types/is-url": "^1.2.28",
"@types/jest": "^23.1.6",
"@types/lodash": "^4.14.108",
"@types/node": "^8.10.10",
"@types/shelljs": "^0.7.8",
"@types/semver": "^5.5.0",
"@types/yaml": "^1.0.2",
"ajv": "^5.5.2",
"deep-equal": "^1.0.1",
"elm": "0.18.0-exp5",
"exit": "^0.1.2",
"flow-bin": "^0.66.0",
"flow-remove-types": "^1.2.3",
"jest": "^23.1.0",
"promise-timeout": "^1.3.0",
"semver": "^5.5.0",
"shelljs": "^0.7.8",
"ts-jest": "^23.1.3",
"ts-node": "^3.3.0",
"tslint": "^5.11.0",
"typescript": "~3.2.1",
"uglify-js": "^3.3.22",
"watch": "^1.0.2",
"@types/graphql": "^0.11.7",
"@types/js-base64": "^2.3.1",
"@types/pako": "^1.0.0",
"@types/pluralize": "0.0.28"
},
"files": [
"dist/**"
],
"bin": "dist/cli/index.js",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "src/cli/tsconfig.json"
}
},
"testRegex": "(/__tests__/.*)\\.test\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}