UNPKG

seedgoose

Version:

Mongoose data seeding with smart id references tracking.

64 lines (62 loc) 1.58 kB
{ "name": "seedgoose", "version": "2.0.2", "description": "Mongoose data seeding with smart id references tracking.", "bin": { "seedgoose": "lib/index.js" }, "directories": { "lib": "lib" }, "main": "lib/index.js", "scripts": { "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "test": "mocha \"./test/**/*Test.js\"", "test-cov": "mocha \"./test/**/*Test.js\"", "prepare": "npm run build", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/zhangkaiyulw/seedgoose.git" }, "keywords": [ "mongoose", "mongoDB", "fixtures", "data", "seeding" ], "author": "Zhang Kai Yu <yeannylam@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/zhangkaiyulw/seedgoose/issues" }, "homepage": "https://github.com/zhangkaiyulw/seedgoose#readme", "dependencies": { "chalk": "^2.4.2", "find-dominant-file": "^2.2.0", "load-any-file": "^1.3.0", "series-async-each": "^3.0.0", "type-args": "^0.2.1", "type-args-usage": "^0.2.1", "walk-sync": "^2.0.2" }, "devDependencies": { "@types/mongoose": "^5.5.3", "@types/node": "^12.0.2", "chai": "^4.2.0", "faker": "^4.1.0", "mocha": "^6.1.4", "tslint": "^5.16.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.4.5" }, "peerDependencies": { "mongoose": ">= 4" } }