-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "@symbux/injector",
"version": "1.5.0",
"description": "A dependecy injection library using TypeScript decorators.",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node demo/index.ts",
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Symbux/Injector.git"
},
"keywords": [
"dependency",
"injection",
"injector",
"symbux",
"typescript",
"decorator",
"jest"
],
"author": "Symbux Dev <hello@symbux.dev> (https://symbux.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Symbux/Injector/issues"
},
"homepage": "https://github.com/Symbux/Injector#readme",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}