UNPKG

1.17 kBJSONView Raw
1{
2 "name": "nestjs-extractor",
3 "version": "1.1.0",
4 "description": "NestJS module for extract providers from parent non-global modules",
5 "keywords": [
6 "nestjs",
7 "extractor",
8 "module",
9 "DI",
10 "global",
11 "provide",
12 "provider",
13 "inject",
14 "injector"
15 ],
16 "license": "MIT",
17 "author": "Ivan Klimenko <ivan@yeswell.ru> (yeswell.ru)",
18 "files": [
19 ".build/"
20 ],
21 "main": ".build/index.js",
22 "repository": {
23 "type": "git",
24 "url": "git+https://gitlab.com/yeswell-typescript/nestjs-extractor.git"
25 },
26 "scripts": {
27 "build": "npx tsc",
28 "lint": "eslint sources/**/*.ts tests/**/*.ts",
29 "test": "mocha"
30 },
31 "devDependencies": {
32 "@nestjs/platform-express": "10.2.6",
33 "@nestjs/testing": "10.2.6",
34 "@types/mocha": "10.0.2",
35 "@types/node": "20.8.2",
36 "@typescript-eslint/eslint-plugin": "6.7.4",
37 "@typescript-eslint/parser": "6.7.4",
38 "eslint": "8.50.0",
39 "eslint-plugin-no-useless-assign": "1.0.3",
40 "expect": "29.7.0",
41 "mocha": "10.2.0",
42 "ts-node": "10.9.1",
43 "typescript": "4.9.5"
44 },
45 "peerDependencies": {
46 "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
47 "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
48 }
49}