-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"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"
}
}