-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 806 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 806 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
{
"name": "propin",
"version": "1.2.0",
"description": "lightweight dependency injection library for TypeScript projects",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "ts-node --project test test/index.test.ts",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iKBAHT/propin.git"
},
"keywords": [
"di",
"dependency",
"injection",
"typescript",
"ioc"
],
"author": "iKBAHT ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/iKBAHT/propin/issues"
},
"homepage": "https://github.com/iKBAHT/propin#readme",
"dependencies": {
"reflect-metadata": "0.1.10"
},
"devDependencies": {
"ts-node": "3.0.2",
"typescript": "2.2.2"
}
}