UNPKG

good-vibes

Version:

Good Vibes is a Node.js testing library inspired by Alicia Keys Tiny Desk Concert

69 lines (68 loc) 1.76 kB
{ "name": "good-vibes", "version": "1.4.0", "description": "Good Vibes is a Node.js testing library inspired by Alicia Keys Tiny Desk Concert", "main": "./lib/src/index.js", "types": "./typings/src/index.d.ts", "type": "commonjs", "files": [ "src/*", "lib/src/*", "typings/src/*" ], "engines": { "node": ">=16" }, "scripts": { "prettier": "prettier --ignore-path .gitignore --write .", "lint": "eslint --ignore-path .gitignore .", "build": "npm run lint && tsc", "test": "npm run build && node lib/test/all.test.js", "coverage": "nyc --reporter=lcov --reporter=text-summary npm run test", "coverage-codecov": "npm run coverage && codecov", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+https://github.com/subramanian-elavathur/good-vibes.git" }, "keywords": [ "good-vibes", "good", "vibes", "alicia", "keys", "nodejs", "testing", "test", "tests", "library", "testing-library" ], "author": "Subramanian Elavathur", "license": "MIT", "bugs": { "url": "https://github.com/subramanian-elavathur/good-vibes/issues" }, "lint-staged": { "**/*": "npm run prettier" }, "homepage": "https://github.com/subramanian-elavathur/good-vibes#readme", "devDependencies": { "@types/node": "^18.7.13", "@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/parser": "^5.10.0", "codecov": "^3.8.3", "eslint": "^8.7.0", "eslint-config-prettier": "^8.3.0", "husky": "^8.0.1", "lint-staged": "^13.0.3", "nyc": "^15.1.0", "prettier": "2.7.1", "typescript": "^4.3.5" }, "dependencies": { "diff": "^5.0.0", "lodash.isequal": "^4.5.0" } }