-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1006 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1006 Bytes
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
{
"name": "reflect-extension",
"version": "1.0.5",
"description": "Extension methods for reflect namespace",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "src/declaration.d.ts",
"private": false,
"scripts": {
"test": "jasmine-ts --config=jasmine.json",
"build": "sh ./scripts/build.sh"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/WinUP/reflect-extension.git"
},
"bugs": {
"url": "https://github.com/WinUP/reflect-extension/issues"
},
"author": "Lundarl Gholoi",
"publishConfig": {
"access": "public"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/jasmine": "^3.5.4",
"@types/node": "^13.7.1",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}