-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 875 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 875 Bytes
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
{
"name": "@knowark/injectarkjs",
"version": "0.10.6",
"description": "Dependency Injector for Javascript",
"main": "lib/index.js",
"type": "module",
"author": "Knowark",
"scripts": {
"clear": "rm -rf node_modules/",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowark/injectarkjs.git"
},
"keywords": [
"injection",
"dependency"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"transform": {}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/knowark/injectarkjs/issues"
},
"homepage": "https://github.com/knowark/injectarkjs#readme",
"devDependencies": {
"jest": "^29.5.0"
},
"dependencies": {}
}