12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "name": "prototype-hooks",
- "version": "4.0.0",
- "description": "add before and after hooks to any JavaScript prototype chain",
- "main": "index.js",
- "scripts": {
- "test": "tap test/*.js",
- "cover": "nyc npm test",
- "complexity": "plato -r -d ./reports/complexity index.js",
- "lint": "jshint ."
- },
- "author": "Marak <support@marak.com>",
- "license": "MIT",
- "devDependencies": {
- "nyc": "^10.1.2",
- "plato": "^1.7.0",
- "tap": "^9.0.3",
- "tape": "^4.6.3"
- },
- "nyc": {
- "all": false,
- "exclude": [
- "coverage",
- "public",
- "reports",
- "test",
- "node_modules"
- ],
- "reporter": [
- "html",
- "lcov",
- "clover"
- ],
- "report-dir": "./reports/coverage"
- }
- }
|