more-dates
Version:
javascript library to get random dates
84 lines (83 loc) • 1.56 kB
JSON
{
"name": "more-dates",
"version": "1.0.1",
"description": "javascript library to get random dates",
"main": "index.js",
"scripts": {
"test:cobertura": "NODE_ENV=test nyc ava",
"test": "NODE_ENV=test xo && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorma16/more-dates.git"
},
"keywords": [
"dates",
"random",
"random dates",
"generator",
"seed"
],
"author": "j0rma",
"license": "MIT",
"bugs": {
"url": "https://github.com/jorma16/more-dates/issues"
},
"homepage": "https://github.com/jorma16/more-dates#readme",
"devDependencies": {
"ava": "^0.25.0",
"nyc": "^11.6.0",
"tap-xunit": "^2.2.0",
"xo": "^0.20.3"
},
"xo": {
"space": true,
"rules": {
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"args": "none"
}
],
"no-warning-comments": [
0
],
"arrow-parens": [
"error",
"always"
],
"object-shorthand": [
"off"
],
"object-curly-spacing": [
"error",
"always"
]
},
"settings": {
"import/resolver": {
"node": {
"paths": [
"./"
]
}
}
}
},
"ava": {
"files": [
"**/*.spec.js"
],
"concurrency": 50,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/*.mock.js"
]
}
}