UNPKG

tape-index

Version:

Automatically index and test all modules

64 lines (63 loc) 1.81 kB
{ "name": "tape-index", "version": "3.2.0", "description": "Automatically index and test all modules", "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)", "keywords": [ "id", "key" ], "bin": { "tape-index": "./bin/tape-index.js" }, "repository": { "type": "git", "url": "git://github.com/medikoo/tape-index.git" }, "dependencies": { "es5-ext": "^0.10.49", "essentials": "^1.0.0", "fs2": "^0.3.4", "minimist": "^1.2.0" }, "devDependencies": { "eslint": "^7.32.0", "eslint-config-medikoo": "^4.1.0", "git-list-updated": "^1.1.2", "husky": "^4.3.8", "lint-staged": "^11.2.0", "nyc": "^15.1.0", "prettier-elastic": "^2.2.1", "proxyquire": "^2.1.0", "tape": "^5.3.1" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint" ], "*.{css,html,js,json,md,yaml,yml}": [ "prettier -c" ] }, "eslintConfig": { "extends": "medikoo/node", "root": true }, "scripts": { "coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary npm test", "check-coverage": "npm run coverage && nyc check-coverage --statements -1 --function 100 --branches -1 --lines -1", "lint": "eslint --ignore-path=.gitignore .", "lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'", "prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c", "prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'", "test-prepare": "node bin/tape-index.js", "test-run": "node test.index.js", "test": "npm run test-prepare && npm run test-run" }, "license": "ISC" }