@workingscorpion/class-faker
Version:
Class based Faker Object Generator for testing node.js inspired by Fakingoose
84 lines (83 loc) • 2.43 kB
JSON
{
"name": "@workingscorpion/class-faker",
"version": "0.0.5",
"description": "Class based Faker Object Generator for testing node.js inspired by Fakingoose",
"type": "module",
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/bundle.mjs",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/bundle.cjs",
"types": "./dist/index.d.cts"
}
}
},
"scripts": {
"start": "yarn run build && clear && node dist/bundle.mjs",
"build": "rimraf dist && tsc -p tsconfig.json && rollup -c --verbose",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"test:e2e": "jest --config ./jest.config.js --no-cache --detectOpenHandles",
"lint": "eslint -c .eslintrc.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/workingscorpion/class-faker.git"
},
"keywords": [
"fake",
"chance",
"node.js",
"node",
"test",
"class"
],
"author": "workingscorpion <workingscorpion@gmail.com>",
"homepage": "https://github.com/workingscorpion/class-faker.git",
"bugs": {
"url": "https://github.com/workingscorpion/class-faker/issues",
"email": "workingscorpion@gmail.com"
},
"license": "MIT",
"dependencies": {
"chance": "^1.1.12",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^4.24.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^10.0.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"chance": "^1.1.12",
"reflect-metadata": "^0.1.13"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}