X-Git-Url: http://git.squeep.com/?p=squeep-lazy-property;a=blobdiff_plain;f=package.json;fp=package.json;h=8c35e08cb67523c20f4673c45a4635fb1a4f953c;hp=0000000000000000000000000000000000000000;hb=1017c96958b07004f5dae64d0004d6104fedebd9;hpb=2a09b88daec188d1e2c49ef56dbdb9c81bd3ff28 diff --git a/package.json b/package.json new file mode 100644 index 0000000..8c35e08 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "@squeep/lazy-property", + "version": "1.0.0", + "description": "Defer property initialization calls until first access.", + "main": "index.js", + "scripts": { + "coverage": "nyc npm test", + "coverage-check": "nyc check-coverage", + "eslint": "eslint *.js", + "test": "mocha --recursive" + }, + "pre-commit": [ + "eslint", + "coverage", + "coverage-check" + ], + "repository": { + "type": "git", + "url": "https://git.squeep.com/squeep-lazy-property/" + }, + "author": "Justin Wind ", + "license": "ISC", + "dependencies": { + "eslint": "^8.12.0", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-security": "^1.4.0", + "eslint-plugin-sonarjs": "^0.12.0", + "mocha": "^9.2.2", + "nyc": "^15.1.0", + "pre-commit": "^1.2.2", + "sinon": "^13.0.1" + } +}