random-profile-generator
Version:
Generates a random user profile with all the common user profile items such as name, address, profile image etc.
78 lines • 2.2 kB
JSON
{
"name": "random-profile-generator",
"version": "2.3.0",
"description": "Generates a random user profile with all the common user profile items such as name, address, profile image etc.",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "babel --out-dir dist --source-maps --ignore *.test.js src",
"test": "./node_modules/.bin/_mocha tests/index.test.js --compilers js:babel-register -R spec",
"test:local": "npm test -- -w",
"cover": "nyc --reporter=lcov npm test",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/kasunkv/random-profile-generator.git"
},
"keywords": [
"random",
"random-profiles",
"mock user profiles",
"user profiles",
"profile data",
"mock data",
"mock json profiles",
"random names",
"random addresses"
],
"author": "Kasun Kodagoda <'kvkrusl@gmail.com'>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasunkv/random-profile-generator/issues"
},
"homepage": "https://github.com/kasunkv/random-profile-generator#readme",
"dependencies": {
"chance": "1.0.4",
"moment": "2.15.2",
"unique-random-array": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"ghooks": "1.3.2",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"nyc": "8.3.2",
"rimraf": "2.5.4",
"semantic-release": "^4.3.5"
},
"files": [
"dist",
"data",
"README.md"
],
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}