UNPKG

634 BJSONView Raw
1{
2 "name": "di-corate",
3 "version": "0.1.0",
4 "description": "Another dependency injection implementation for Typescript using decorators",
5 "main": "./lib/index.js",
6 "types": "./lib/index.d.ts",
7 "files": [
8 "/lib"
9 ],
10 "scripts": {
11 "build": "tsc -p .",
12 "publish": "npm run build && npm publish ./lib"
13 },
14 "author": "apashkov-ext",
15 "license": "MIT",
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/apashkov-ext/di-corate.git"
19 },
20 "keywords": [
21 "dependency injection",
22 "di",
23 "ioc",
24 "inversion of control"
25 ],
26 "devDependencies": {
27 "typescript": "^4.0.5"
28 }
29}