json-schema-seeder
Version:
Seed tables from JSON-schema. Supports foreign keys, expressions, and faker, chance & casual libraries.
71 lines (70 loc) • 1.99 kB
JSON
{
"name": "json-schema-seeder",
"version": "0.1.10",
"description": "Seed tables from JSON-schema. Supports foreign keys, expressions, and faker, chance & casual libraries.",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:prerelease": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard --fix",
"mocha": "mocha tests/ --recursive",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha tests/ --recursive",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/feathers-plus/seeder-foreign-keys.git"
},
"keywords": [
"seed",
"seeder",
"table",
"database",
"feathers",
"feathersjs",
"feathers-plus",
"service"
],
"author": {
"name": "John J. Szwaronek",
"email": "johnsz9999@gmail.com",
"url": "https://feathers-plus.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathers-plus/seeder-foreign-keys/issues"
},
"homepage": "https://github.com/feathers-plus/seeder-foreign-keys#readme",
"dependencies": {
"chance": "^1.0.16",
"debug": "^3.1.0",
"faker": "^4.1.0",
"json-schema-faker": "0.5.0-rc15",
"mongodb": "^3.1.1",
"seeder-foreign-keys": "0.1.3",
"traverse": "^0.6.6"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.1",
"semistandard": "^12.0.0",
"shx": "^0.2.2"
},
"engines": {
"node": ">= 8"
}
}