luhn-generator
Version:
A generator of numbers that passes the validation of Luhn algorithm or Luhn formula, also known as the 'modulus 10' or 'mod 10' algorithm
154 lines (153 loc) • 3.99 kB
JSON
{
"name": "nyc",
"version": "13.3.0",
"description": "the Istanbul command line interface",
"main": "index.js",
"scripts": {
"bundle": "bundle-dependencies update",
"posttest": "standard",
"test": "npm run clean && npm run build && npm run instrument && npm run test-integration && npm run test-mocha && npm run report",
"clean": "rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js",
"build": "node ./build-tests",
"instrument": "node ./build-self-coverage.js",
"test-integration": "tap -t120 --no-cov -b ./test/build/*.js && mocha --timeout=15000 ./test/nyc-bin.js",
"test-mocha": "node ./bin/nyc --no-clean --silent --temp-dir=./.self_coverage mocha ./test/nyc.js ./test/process-args.js",
"report": "node ./bin/nyc --temp-dir ./.self_coverage/ -r text -r lcov report",
"release": "standard-version"
},
"bin": {
"nyc": "./bin/nyc.js"
},
"files": [
"index.js",
"bin/*.js",
"lib/*.js",
"lib/commands/*.js",
"lib/instrumenters/*.js",
"!**/*covered.js"
],
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
"test/fixtures/coverage.js",
"test/build/*",
"test/src/*",
"test/nyc.js",
"test/process-args.js",
"index.covered.js",
"test/fixtures/_generateCoverage.js"
]
},
"standard": {
"ignore": [
"**/fixtures/**",
"**/test/build/*"
]
},
"keywords": [
"coverage",
"reporter",
"subprocess",
"testing"
],
"contributors": [
{
"name": "Isaac Schlueter",
"website": "https://github.com/isaacs"
},
{
"name": "Mark Wubben",
"website": "https://novemberborn.net"
},
{
"name": "James Talmage",
"website": "https://twitter.com/jamestalmage"
},
{
"name": "Krishnan Anantheswaran",
"website": "https://github.com/gotwarlost"
}
],
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"dependencies": {
"archy": "^1.0.0",
"arrify": "^1.0.1",
"caching-transform": "^3.0.1",
"convert-source-map": "^1.6.0",
"find-cache-dir": "^2.0.0",
"find-up": "^3.0.0",
"foreground-child": "^1.5.6",
"glob": "^7.1.3",
"istanbul-lib-coverage": "^2.0.3",
"istanbul-lib-hook": "^2.0.3",
"istanbul-lib-instrument": "^3.1.0",
"istanbul-lib-report": "^2.0.4",
"istanbul-lib-source-maps": "^3.0.2",
"istanbul-reports": "^2.1.1",
"make-dir": "^1.3.0",
"merge-source-map": "^1.1.0",
"resolve-from": "^4.0.0",
"rimraf": "^2.6.3",
"signal-exit": "^3.0.2",
"spawn-wrap": "^1.4.2",
"test-exclude": "^5.1.0",
"uuid": "^3.3.2",
"yargs": "^12.0.5",
"yargs-parser": "^11.1.1"
},
"devDependencies": {
"any-path": "^1.3.0",
"bundle-dependencies": "^1.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"forking-tap": "^0.1.1",
"is-windows": "^1.0.2",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"newline-regex": "^0.2.1",
"requirejs": "^2.3.6",
"sanitize-filename": "^1.6.1",
"source-map-support": "^0.5.10",
"standard": "^12.0.1",
"standard-version": "^4.4.0",
"strip-indent": "^2.0.0",
"tap": "^12.4.0",
"which": "^1.3.1",
"zero-fill": "^2.2.3"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git@github.com:istanbuljs/nyc.git"
},
"bundledDependencies": [
"archy",
"arrify",
"caching-transform",
"convert-source-map",
"find-cache-dir",
"find-up",
"foreground-child",
"glob",
"istanbul-lib-coverage",
"istanbul-lib-hook",
"istanbul-lib-report",
"istanbul-lib-source-maps",
"istanbul-reports",
"make-dir",
"merge-source-map",
"resolve-from",
"rimraf",
"signal-exit",
"spawn-wrap",
"test-exclude",
"uuid",
"yargs",
"yargs-parser"
]
}