chance-object
Version:
A Chance.js mixin to generate objects.
67 lines (66 loc) • 1.45 kB
JSON
{
"name": "chance-object",
"description": "A Chance.js mixin to generate objects.",
"version": "1.0.1",
"author": {
"name": "Michael Novotny",
"email": "manovotny@gmail.com",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/chance-object.git"
},
"keywords": [
"chance",
"object",
"generated",
"mixin",
"random"
],
"engines": {
"node": ">=8.6.0",
"yarn": ">=1.0.0"
},
"main": "index.js",
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint . --ext .json --ext .js",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"test": "yarn lint && yarn coverage",
"unit": "jest"
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"chance": "1.0.16",
"eslint": "4.19.1",
"eslint-config-get-off-my-lawn": "4.0.1",
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"jest": "23.4.2",
"lint-staged": "7.2.0",
"prettier": "1.14.0"
},
"peerDependencies": {
"chance": "^1.0.13"
},
"jest": {
"coverageDirectory": ".jest-coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
}
}