UNPKG

1.04 kBJSONView Raw
1{
2 "name": "di-corate",
3 "version": "0.2.1",
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 "test": "nyc --reporter=lcovonly --reporter=text mocha -r ts-node/register src/tests/**/*.test.ts",
12 "test:ci": "npm run test && npm run coverage",
13 "coverage": "nyc report --reporter=text-lcov | coveralls",
14 "build": "tsc -p ."
15 },
16 "author": "apashkov-ext",
17 "license": "MIT",
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/apashkov-ext/di-corate.git"
21 },
22 "keywords": [
23 "dependency injection",
24 "dependency",
25 "injection",
26 "di",
27 "ioc",
28 "inversion of control"
29 ],
30 "devDependencies": {
31 "@types/chai": "^4.2.14",
32 "@types/mocha": "^8.0.4",
33 "@types/node": "^14.14.7",
34 "chai": "^4.2.0",
35 "coveralls": "^3.1.0",
36 "mocha": "^8.2.1",
37 "nyc": "^15.1.0",
38 "ts-node": "^9.0.0",
39 "typescript": "^4.0.5"
40 }
41}