WowMuchName/interceptors

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "interceptors",
  "version": "1.0.2",
  "description": "Java like interceptors for Typescript",
  "main": "index.js",
  "scripts": {
    "test": "mocha --require ts-node/register test/*.ts",
    "test:watch": "mocha --watch --watch-extensions ts --reporter min --require ts-node/register test/*.ts",
    "test:coverage": "nyc --extension .ts npm test && nyc report --reporter=html --reporter=lcov",
    "build": "tsc",
    "build:release": "npm run clean && npm run test:coverage && npm run lint && npm run build && npm run minify && npm run docs",
    "build:watch": "tsc --watch",
    "build:web": "tsc --module es6 --declaration false --outDir web",
    "lint": "tslint -p tsconfig.json -e test/*.ts",
    "minify": "uglifyjs index.js -o index.js",
    "minify:web": "uglifyjs web/index.js -o web/index.min.js",
    "docs": "typedoc --out documentation --name Interceptors --mode file lib/index.ts",
    "clean": "rimraf .nyc_output coverage documentation web index.js index.d.ts index.js.map test/*.js test/*.d.ts test/*.js.map lib/*.js lib/*.d.ts lib/*.js.map"
  },
  "author": "Mark Albert",
  "license": "MIT",
  "keywords": [
    "interceptor",
    "decorator",
    "proxy",
    "aop",
    "aspects"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/WowMuchName/interceptors.git"
  },
  "bugs": {
    "url": "https://github.com/WowMuchName/interceptors/issues"
  },
  "homepage": "https://github.com/WowMuchName/interceptors",
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "chai": "^4.2.0",
    "istanbul": "^0.4.5",
    "mocha": "^5.2.0",
    "nyc": "^13.3.0",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^2.6.3",
    "ts-node": "^8.0.2",
    "tslint": "^5.12.1",
    "typedoc": "^0.14.2",
    "typescript": "^3.3.3",
    "uglify-es": "^3.3.9"
  }
}