-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@type-injector/lib",
"version": "1.0.0-beta.3",
"description": "inject typescript classes recoursively",
"scripts": {
"test": "mocha -r ts-node/register ./src/**/*.spec.ts",
"test:watch": "watch-npm test",
"lint": "eslint .eslintrc.cjs .",
"build": "tsc -P tsconfig.build.json",
"bundle": "node build-bundles.js",
"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text-summary --exclude '**/*.spec.ts' mocha -r ts-node/register ./src/**/*.spec.ts",
"doc": "typedoc --plugin typedoc-plugin-markdown --out ./typedoc --excludePrivate --excludeInternal --excludeProtected src/index.ts --includeVersion --readme none"
},
"watch": {
"test": {
"patterns": [
"test.ts",
"src"
],
"extensions": "*",
"quiet": false,
"inherit": false,
"verbose": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/e-hein/type-injector-lib.git"
},
"keywords": [
"typescript",
"inject",
"ioc",
"di",
"type-safe"
],
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-tsdoc": "^0.2.16",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rollup": "^2.79.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.13",
"typedoc-plugin-markdown": "^3.13.5",
"typescript": "^4.8.2",
"uglify-js": "^3.17.0",
"watch-npm": "^1.0.1"
},
"files": [
"dist"
],
"main": "./dist/bundles/type-injector-lib.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"es2020": "./dist/bundles/type-injector-lib.mjs",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"es2020": "./dist/bundles/type-injector-lib.mjs",
"node": "./dist/bundles/type-injector-lib.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/bundles/type-injector-lib.mjs"
}
},
"sideEffects": false
}