97 строки
2.6 KiB
JSON
97 строки
2.6 KiB
JSON
{
|
|
"name": "quicktype",
|
|
"version": "12.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": "https://github.com/quicktype/quicktype",
|
|
"scripts": {
|
|
"pub": "script/publish.sh",
|
|
"prepare": "npm run build",
|
|
"build": "script/build.ts",
|
|
"test": "npm run build && npm run tslint && jest && script/test",
|
|
"start": "script/watch",
|
|
"pkg": "script/make-pkgs.sh",
|
|
"tslint": "tslint --project src --exclude 'src/get-stream/**' --exclude 'src/__tests__/**'"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^2.1.0",
|
|
"chance": "^1.0.13",
|
|
"command-line-args": "^4.0.6",
|
|
"command-line-usage": "^4.0.0",
|
|
"graphql": "^0.11.7",
|
|
"handlebars": "^4.0.11",
|
|
"immutable": "^4.0.0-rc.9",
|
|
"is-url": "^1.2.2",
|
|
"js-base64": "^2.4.3",
|
|
"lodash": "^4.17.4",
|
|
"moment": "^2.19.3",
|
|
"node-fetch": "^1.7.1",
|
|
"node-persist": "^2.1.0",
|
|
"pako": "^1.0.6",
|
|
"pkg": "^4.3.0",
|
|
"pluralize": "^7.0.0",
|
|
"stream-json": "0.5.2",
|
|
"string-to-stream": "^1.1.0",
|
|
"typescript": "~2.6.2",
|
|
"typescript-json-schema": "quicktype/typescript-json-schema#dfa55501e27caec9ac3abf6b6f8b4407498c3bab",
|
|
"unicode-properties": "quicktype/unicode-properties#dist",
|
|
"universal-analytics": "^0.4.16",
|
|
"urijs": "^1.19.1",
|
|
"uuid": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chance": "^1.0.0",
|
|
"@types/graphql": "^0.11.7",
|
|
"@types/handlebars": "^4.0.36",
|
|
"@types/is-url": "^1.2.28",
|
|
"@types/jest": "^22.2.0",
|
|
"@types/js-base64": "^2.3.1",
|
|
"@types/lodash": "^4.14.72",
|
|
"@types/node": "^8.0.19",
|
|
"@types/node-persist": "0.0.33",
|
|
"@types/pako": "^1.0.0",
|
|
"@types/pluralize": "0.0.28",
|
|
"@types/shelljs": "^0.7.8",
|
|
"@types/universal-analytics": "^0.4.2",
|
|
"@types/urijs": "github:quicktype/types-urijs",
|
|
"ajv": "^5.2.2",
|
|
"compare-versions": "^3.1.0",
|
|
"deep-equal": "^1.0.1",
|
|
"elm": "^0.18.0",
|
|
"exit": "^0.1.2",
|
|
"flow-bin": "^0.66.0",
|
|
"flow-remove-types": "^1.2.3",
|
|
"jest": "^22.4.3",
|
|
"promise-timeout": "^1.1.1",
|
|
"shelljs": "^0.7.8",
|
|
"ts-jest": "^22.4.2",
|
|
"ts-node": "^3.3.0",
|
|
"tslint": "^5.8.0",
|
|
"uglify-js": "^3.0.26",
|
|
"watch": "^1.0.2"
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"bin": "dist/cli/index.js",
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfigFile": "src/tsconfig.json"
|
|
}
|
|
},
|
|
"testRegex": "(/__tests__/.*)\\.test\\.(tsx?)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json",
|
|
"node"
|
|
]
|
|
}
|
|
} |