-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
61
62
63
64
65
66
67
{
"name": "typescript-extended-class-metadata",
"version": "0.3.0",
"description": "",
"author": "Joonseok Hu",
"repository": {
"type": "git",
"url": "https://github.com/joonseokhu/typescript-extended-class-metadata.git"
},
"keywords": [],
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
},
"require": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
}
},
"./plugin": {
"import": {
"types": "./dist/lib/plugin.d.ts",
"default": "./dist/lib/plugin.js"
},
"require": {
"types": "./dist/plugin/index.d.ts",
"default": "./dist/plugin/index.js"
}
}
},
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"prebuild": "rimraf ./dist ./test/dist",
"build": "npm run prebuild && tsc --project ./tsconfig.build.json",
"lint": "eslint .",
"pretest": "npm run build && tspc --project ./tsconfig.test.json",
"test": "mocha ./test/dist/**/*.spec.js",
"dev": "npm run pretest && node ./test/dist/index.js"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"ts-patch": "^3.0.2",
"tsc-watch": "^6.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"reflect-metadata": "^0.1.x",
"typescript": ">= 4.9.0"
}
}