UNPKG

fakeit

Version:

Command-line utility that generates fake data which can be output as JSON, YAML, CSON, or CSV formats based on models defined in YAML.

132 lines (131 loc) 3.15 kB
{ "name": "fakeit", "author": "Aaron Benton <bentonam@gmail.com> (https://github.com/bentonam)", "contributors": [ "Tyler Benton <tjbenton21@gmail.com> (https://github.com/tjbenton)" ], "version": "1.4.0", "description": "Command-line utility that generates fake data which can be output as JSON, YAML, CSON, or CSV formats based on models defined in YAML.", "scripts": { "test": "make test", "watch": "make build -- --watch" }, "bin": { "fakeit": "bin/fakeit" }, "main": "dist/index.js", "repository": { "type": "git", "url": "git+https://github.com/bentonam/fakeit.git" }, "bugs": { "url": "https://github.com/bentonam/fakeit/issues" }, "engines": { "node": ">=5" }, "keywords": [ "fake", "data", "generate", "model", "mock", "faker", "chance", "random", "async", "json", "yaml", "csv", "cson", "couchbase", "sync-gateway" ], "license": "MIT", "homepage": "https://github.com/bentonam/fakeit#readme", "dependencies": { "adm-zip": "^0.4.7", "async-array-methods": "^2.1.0", "babel-core": "~6.22.1", "babel-helpers": "~6.22.0", "babel-runtime": "~6.22.0", "chalk": "^1.1.3", "chance": "^1.0.4", "cli-table": "~0.3.1", "commander": "^2.9.0", "couchbase-promises": "~4.3.0", "cson": "^4.0.0", "csv-parse": "^1.1.7", "csv-stringify": "^1.0.4", "dependency-resolver": "~2.0.1", "es6-promise-pool": "^2.4.4", "es6-promisify": "^5.0.0", "events-async": "~1.1.0", "faker": "^3.1.0", "find-root": "~1.0.0", "format-seconds": "~0.3.1", "fs-extra-promisify": "^0.0.2", "globby": "^6.1.0", "highlight-es": "~1.0.0", "lodash": "~4.17.2", "log-symbols": "~1.0.2", "ora": "~0.4.1", "perfy": "~1.1.2", "request": "^2.78.0", "set-cookie-parser": "~2.0.0", "to-js": "^0.0.6", "update-notifier": "^1.0.2", "yamljs": "^0.2.8" }, "devDependencies": { "ava": "^0.16.0", "ava-spec": "github:tjbenton/ava-spec", "babel-cli": "~6.22.2", "babel-plugin-array-includes": "~2.0.3", "babel-plugin-external-helpers": "~6.22.0", "babel-plugin-transform-runtime": "~6.22.0", "babel-preset-latest": "~6.22.0", "babel-preset-stage-0": "~6.22.0", "coveralls": "^2.11.15", "get-stream": "~3.0.0", "joi": "~10.2.0", "jsondiffpatch": "~0.2.4", "lint-rules": "github:ma-shop/lint-rules#v0.0.5", "nixt": "~0.5.0", "np": "~2.12.0", "nyc": "~10.1.2", "proxyquire": "~1.7.10", "test-console": "~1.0.0" }, "babelConfig": { "presets": [ "latest", "stage-0" ], "plugins": [ "transform-runtime", "external-helpers", "array-includes" ] }, "ava": { "files": [ "test/**/*.test.js" ], "source": [ "dist/**/*", "test/fixtures/models/*/+(models|validation)/*", "test/utils.js" ], "failFast": true, "concurrency": 1, "babel": "inherit" }, "nyc": { "exclude": [ "test/**/*", "dist/index.js", "dist/documents-stream.js" ] } }