dtsgeneratorws
Version:
TypeScript d.ts file generator for JSON Schema file
75 lines (74 loc) • 2.04 kB
JSON
{
"name": "dtsgeneratorws",
"version": "2.5.4",
"description": "TypeScript d.ts file generator for JSON Schema file",
"bin": {
"dtsgen": "./bin/dtsgen"
},
"main": "dist/core/",
"typings": "dist/core/index.d.ts",
"scripts": {
"clean": "rimraf dist/ build/ {src,test}/**/*.{js,js.map} *.tsbuildinfo",
"build": "tsc -p ./tsconfig-build.json",
"prepublishOnly": "npm run build",
"lint": "tslint --project ./tsconfig.json",
"precompile": "npm run lint",
"compile": "tsc -p .",
"watch": "npm run compile -- -w",
"pretest": "npm run compile",
"do-test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors test/*_test.ts",
"test": "nyc npm run do-test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:update-snapshot": "UPDATE_SNAPSHOT=1 npm run test"
},
"directories": {
"test": "test/"
},
"keywords": [
"TypeScript",
"JSON Schema",
"OpenAPI"
],
"author": "horiuchi",
"license": "MIT",
"homepage": "https://github.com/tsapko3628/dtsgenerator",
"repository": {
"type": "git",
"url": "git@github.com:tsapko3628/dtsgenerator.git"
},
"bugs": {
"url": "https://github.com/tsapko3628/dtsgenerator/issues"
},
"engines": {
"node": ">= 8.0"
},
"dependencies": {
"@types/lodash": "^4.14.150",
"commander": "^5.1.0",
"cross-fetch": "^3.0.4",
"debug": "^4.1.1",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"tslib": "^1.11.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/mkdirp": "^1.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/power-assert": "^1.5.3",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"power-assert": "^1.6.1",
"rimraf": "^3.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
}
}