random-integer
Version:
generate a random integer
48 lines (46 loc) • 1.05 kB
JSON
{
"name": "random-integer",
"version": "2.0.0",
"description": "generate a random integer",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"coverage": "open coverage/lcov-report/index.html",
"coverage:check": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard && istanbul cover tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joaquimserafim/random-integer.git"
},
"keywords": [
"random",
"numbers",
"int",
"integers",
"util"
],
"author": "@joaquimserafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/random-integer/issues"
},
"homepage": "https://github.com/joaquimserafim/random-integer",
"devDependencies": {
"istanbul": "^0.4.5",
"pre-commit": "^1.1.3",
"standard": "^8.5.0",
"tape": "^4.6.2"
},
"pre-commit": [
"test",
"coverage:check"
],
"engines": {
"node": ">=6.1"
}
}