UNPKG

ts-aspect

Version:

Simplistic library for Aspect Oriented Programming in TypeScript

47 lines (46 loc) 1.23 kB
{ "name": "ts-aspect", "description": "Simplistic library for Aspect Oriented Programming in TypeScript", "version": "3.1.2", "main": "build/index.js", "types": "build/index.d.ts", "files": [ "build/*" ], "author": "Michael Engel", "license": "ISC", "keywords": [ "Aspect Oriented Programming", "AOP" ], "homepage": "https://github.com/engelmi/ts-aspect", "repository": { "type": "git", "url": "git+https://github.com/engelmi/ts-aspect.git" }, "scripts": { "start": "npm run build && node build/index.js", "start:watch": "nodemon", "test": "jest", "test:cov": "jest --coverage", "build": "rimraf ./build && tsc", "lint": "eslint . --ext .ts --fix" }, "devDependencies": { "@types/jest": "^29.5.2", "@types/node": "^20.4.0", "@typescript-eslint/eslint-plugin": "^5.61.0", "@typescript-eslint/parser": "^5.61.0", "eslint": "^8.44.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.6.0", "jest-mock-extended": "^3.0.4", "nodemon": "^3.0.1", "prettier": "^2.4.1", "rimraf": "^3.0.2", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.1.6" } }