UNPKG

1.04 kBJSONView Raw
1{
2 "name": "di-corate",
3 "version": "0.2.9",
4 "description": "Another dependency injection implementation for Typescript using decorators",
5 "main": "./lib/index.js",
6 "types": "./lib/index.d.ts",
7 "scripts": {
8 "test": "nyc --reporter=lcovonly --reporter=text mocha -r ts-node/register src/tests/**/*.test.ts",
9 "test:ci": "npm run test && npm run coverage",
10 "coverage": "nyc report --reporter=text-lcov | coveralls",
11 "build": "tsc -p ."
12 },
13 "author": "apashkov-ext",
14 "license": "MIT",
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/apashkov-ext/di-corate.git"
18 },
19 "keywords": [
20 "dependency injection",
21 "dependency",
22 "injection",
23 "di",
24 "ioc",
25 "inversion of control"
26 ],
27 "devDependencies": {
28 "@types/chai": "^4.2.14",
29 "@types/mocha": "^8.0.4",
30 "@types/node": "^14.14.7",
31 "chai": "^4.2.0",
32 "coveralls": "^3.1.0",
33 "mocha": "^8.2.1",
34 "nyc": "^15.1.0",
35 "ts-node": "^9.0.0",
36 "typemoq": "^2.1.0",
37 "typescript": "^4.0.5"
38 }
39}