-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "vodit",
"author": "Stefano Baldan",
"license": "ISC",
"version": "0.1.4",
"description": "Minimal dependency injection framework. No frills, no dependencies, no decorators.",
"homepage": "https://singintime.github.io/vodit",
"keywords": [
"dependency injection",
"inversion of control",
"di",
"ioc"
],
"repository": {
"type": "git",
"url": "https://github.com/singintime/vodit.git"
},
"main": "dist/index.js",
"files": [
"./dist/index.js",
"./dist/index.d.ts",
"./dist/index.js.map"
],
"scripts": {
"build": "rollup -c",
"docs": "typedoc ./src/index.ts",
"test": "jest"
},
"devDependencies": {
"@types/jest": "28.1.8",
"jest": "28.1.3",
"prettier": "2.7.1",
"rollup": "2.79.0",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-ts": "3.0.2",
"terser": "5.15.0",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typedoc": "0.23.14",
"typescript": "4.8.2"
}
}