-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "yardic",
"version": "0.2.5",
"description": "Yet Another Dependecy Injection Container",
"main": "dist/container.js",
"types": "dist/container.d.ts",
"scripts": {
"test": "jest src",
"build": "tsc",
"prepublish": "tsc",
"lint": "eslint src --ext .ts",
"demo": "npm run build && node example/example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinczedani/yardic.git"
},
"keywords": [
"dependency",
"injection",
"container",
"di container",
"dependency injection",
"dependency injection container"
],
"author": "Daniel Vincze, [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinczedani/yardic/issues"
},
"homepage": "https://github.com/vinczedani/yardic#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}