forked from Papooch/decorate-all
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "decorate-all",
"version": "1.1.1",
"description": "Decorate all methods of a class using a single class decorator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Papooch/decorate-all.git"
},
"keywords": [
"typescript",
"decorator",
"all",
"methods"
],
"author": "papooch",
"license": "MIT",
"bugs": {
"url": "https://github.com/Papooch/decorate-all/issues"
},
"homepage": "https://github.com/Papooch/decorate-all#readme",
"peerDependencies": {
"reflect-metadata": "^0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"jest": "^27.0.5",
"reflect-metadata": "^0.1.13",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}