genson-js
Version:
JSON schema generator with a possibility to merge schemas
63 lines (62 loc) • 1.43 kB
JSON
{
"name": "genson-js",
"version": "0.0.8",
"main": "dist/index.js",
"types": "dist/index.d.js",
"author": "Aspecto.io",
"license": "Apache-2.0",
"keywords": [
"json",
"schema",
"json-schema",
"jsonschema",
"object",
"generate",
"generator",
"builder",
"merge"
],
"description": "JSON schema generator with a possibility to merge schemas",
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aspecto-io/genson-js.git"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"LICENSE",
"README.md"
],
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testMatch": [
"**/tests/**/*.spec.+(ts|tsx|js)"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}