-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "@teqfw/di",
"version": "0.31.0",
"description": "Dependency Injection container for ES6 modules that works in both browser and Node.js apps.",
"keywords": [
"dependency injection",
"di",
"dynamic import",
"es6 modules",
"teqfw",
"tequila framework"
],
"homepage": "https://github.com/teqfw/di#readme",
"bugs": {
"url": "https://github.com/teqfw/di/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Alex Gusev",
"email": "[email protected]",
"url": "https://github.com/flancer64"
},
"main": "src/Container.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/teqfw/di.git"
},
"scripts": {
"rollup": "rollup -c",
"test": "mocha --recursive './test/**/*.test.mjs'"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"mocha": "^10.7.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
},
"mocha": {
"spec": "./test/**/*.test.mjs",
"timeout": 5000
}
}