UNPKG

@mapeo/mock-data

Version:

Module and CLI to generate mock data for Mapeo

80 lines (79 loc) 1.96 kB
{ "name": "@mapeo/mock-data", "version": "2.1.5", "description": "Module and CLI to generate mock data for Mapeo", "keywords": [ "mapeo", "fake", "data" ], "author": { "name": "Andrew Chou", "email": "andrewchou@fastmail.com" }, "license": "MIT", "type": "module", "main": "index.js", "types": "types/index.d.ts", "bin": { "list-mapeo-schemas": "bin/list-mapeo-schemas.js", "generate-mapeo-data": "bin/generate-mapeo-data.js" }, "scripts": { "prepare": "husky install", "format": "prettier --write .", "test:eslint": "eslint . --cache", "test:prettier": "prettier --cache --check **/*.js", "test:typescript": "npm run type", "test:node": "node --test", "test": "npm-run-all --aggregate-output --print-label --parallel test:*", "type": "tsc", "prepack": "npm run type" }, "dependencies": { "@faker-js/faker": "^9.2.0", "dereference-json-schema": "^0.2.1", "json-schema-faker": "^0.5.8", "type-fest": "^4.29.1" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/node": "^20.9.1", "eslint": "^8.53.0", "husky": "^8.0.3", "lint-staged": "^15.1.0", "npm-run-all2": "^7.0.1", "prettier": "^3.1.0", "typescript": "^5.2.2" }, "peerDependencies": { "@comapeo/schema": "^1.4.1" }, "prettier": { "semi": false, "singleQuote": true }, "eslintConfig": { "env": { "commonjs": true, "es2021": true, "node": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" } }, "lint-staged": { "*.{js,md}": "prettier --write" }, "repository": { "type": "git", "url": "git+https://github.com/digidem/mapeo-mock-data.git" }, "bugs": { "url": "https://github.com/digidem/mapeo-mock-data/issues" }, "homepage": "https://github.com/digidem/mapeo-mock-data#readme" }