UNPKG

creature-features

Version:
65 lines (64 loc) 1.71 kB
{ "name": "creature-features", "version": "5.1.0", "description": "Feature flags for node.js", "main": "index.js", "engines": { "node": ">=10.0.0" }, "scripts": { "lint": "eslint ./index.js ./test/*.test.js", "test": "cross-env jest test/*.test.js ", "cov": "jest test/*.test.js --coverage", "coverage": "jest --coverage --coverageReporters=text-lcov | coveralls", "predocs": " jest test/*.test.js --coverage --coverageDirectory=./dist/coverage ", "docs": "publisher", "postinstall": "node ./post-install.js", "preversion": "npm test", "postversion": "publisher", "postpublish": "git push origin --all --follow-tags && npm run docs" }, "repository": { "type": "git", "url": "git+https://github.com/Kevnz/creature-features.git" }, "keywords": [ "feature", "flags", "toggles", "feature flags", "feature toggles", "continuous delivery", "continuous integration" ], "author": "Kevin Isom <kevin.isom@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Kevnz/creature-features/issues" }, "homepage": "https://kevinisom.info/creature-features/", "devDependencies": { "@kev_nz/publisher": "^4.0.1", "coveralls": "^3.1.1", "cross-env": "^7.0.3", "eslint": "^7.31.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.4.0", "jest": "^27.0.6", "prettier": "^2.3.2" }, "dependencies": { "debug": "^4.3.2", "end-with": "^1.0.2", "file-exists": "^5.0.1", "random-weighted": "^1.0.0" }, "jest": { "coverageReporters": [ "json", "lcov", "html" ] } }