-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 995 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
40
41
42
43
44
{
"name": "@typescript-rtti/reflect",
"version": "0.0.2",
"description": "A unified reflection API for Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist.esm/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run build && nyc node dist/test",
"build": "tsc -b",
"docs": "typedoc",
"prepublishOnly": "npm test"
},
"author": "William Lahti",
"license": "MIT",
"keywords": [
"reflection",
"reflect",
"introspection",
"introspect",
"types",
"runtime types",
"rtti"
],
"repository": {
"url": "https://github.com/typescript-rtti/reflect"
},
"devDependencies": {
"@types/reflect-metadata": "^0.1.0",
"chai": "^4.3.6",
"nyc": "^15.1.0",
"razmin": "^1.2.0",
"source-map-support": "^0.5.21",
"typedoc": "^0.22.12",
"typescript": "^4.5.5",
"zone.js": "^0.11.4"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
}
}