-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 911 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": "phantomdi",
"version": "0.0.5",
"description": "A dependency injection framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist.esm/index.js",
"repository": {
"url": "https://github.com/rezonant/phantomdi"
},
"scripts": {
"build": "ttsc && ttsc -p tsconfig.esm.json",
"test": "npm run build && nyc node dist/test",
"prepublishOnly": "npm run test"
},
"author": "William Lahti",
"license": "MIT",
"keywords": [
"dependency injection",
"di",
"mock"
],
"dependencies": {
"typescript-rtti": "^0.4.16"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"chai": "^4.3.6",
"nyc": "^15.1.0",
"razmin": "^1.2.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"ttypescript": "^1.5.13",
"typescript": "4.6",
"zone.js": "^0.11.5"
}
}