-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "autoreggol",
"version": "0.4.0",
"description": "A collection of handy auto logging decorators.",
"author": "Ronnie Magatti <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/rmagatti/autoreggol",
"keywords": [
"autolog",
"automatic",
"logging",
"autologging",
"es6",
"proxy",
"proxies",
"typescript",
"decorators",
"nodejs"
],
"repository": {
"type": "git",
"url": "[email protected]:rmagatti/autoreggol.git"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf build",
"prepublishOnly": "rimraf build && tsc",
"test": "NODE_ENV=test vitest run && jest",
"test-vitest": "NODE_ENV=test vitest run",
"test-jest": "NODE_ENV=test jest",
"coverage": "NODE_ENV=test vitest run --coverage"
},
"publishConfig": {
"access": "public"
},
"files": [
"/build/*"
],
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}