-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "dependory",
"version": "1.0.1",
"description": "A simple, yet powerful framework to add dependency injection to your TypeScript project.",
"main": "build/index.js",
"scripts": {
"start": "node .",
"build": "rimraf build && tsc",
"bundle": "rimraf build && webpack",
"lint": "tslint -p .",
"test": "mocha build/**/*.spec.js",
"coverage": "nyc npm test",
"release": "npm run bundle && npm publish"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"coveralls": "^3.1.0",
"dts-bundle-webpack": "^1.0.2",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.3.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.2",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"reflect-metadata": "^0.2.1"
},
"repository": {
"type": "git",
"url": "https://git.bre4k3r.de/h1ghbre4k3r/dependory"
},
"author": {
"email": "[email protected]",
"name": "H1ghBre4k3r",
"url": "https://twitter.com/h1ghbre4k3r"
},
"homepage": "https://git.bre4k3r.de/h1ghbre4k3r/dependory",
"bugs": {
"url": "https://git.bre4k3r.de/h1ghbre4k3r/dependory/-/issues",
"email": "[email protected]"
},
"nyc": {
"all": true,
"exclude": [
"**/*.spec.js",
"coverage/**/*",
"webpack.config.js"
],
"reporter": [
"lcov",
"text",
"text-summary"
]
},
"keywords": [
"typescript",
"decorators",
"dependency injection",
"di",
"dependency",
"injection"
]
}