-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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": "@locustjs/locator",
"version": "3.1.0",
"description": "A locustjs library implementing Service Locator pattern to provide loose coupling through IoC (Inversion of Control).",
"main": "index.cjs.js",
"module": "index.esm.js",
"scripts": {
"build": "babel index.esm.js -o index.cjs.js",
"test": "jest",
"mest": "node -r esm ./tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironcodev/locustjs-locator.git"
},
"keywords": [
"javascript",
"locustjs",
"IoC",
"Inversion of Control",
"Service Locator",
"ServiceLocator",
"loose coupling",
"weak coupling"
],
"author": "Iron Code",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironcodev/locustjs-locator/issues"
},
"homepage": "https://github.com/ironcodev/locustjs-locator#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.22.7",
"@babel/node": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.22.5",
"babel-jest": "^26.6.3",
"esm": "^3.2.25",
"jest": "^26.6.3"
},
"dependencies": {
"@locustjs/base": "^4.4.1",
"@locustjs/enum": "^3.0.0",
"@locustjs/exception": "^2.2.0"
}
}