-
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) · 879 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 879 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": "wire-app",
"version": "1.0.7",
"description": "A tiny, but powerful dependency injection container for your Node.js apps",
"main": "./src/wire-app.js",
"scripts": {
"lint": "eslint --cache *.js src/ test/",
"test": "jest -i",
"test:coverage": "jest --coverage"
},
"keywords": [
"wire",
"app",
"wireApp",
"wire-app",
"dependency",
"injection",
"inversion",
"control",
"di",
"ioc",
"framework",
"spring"
],
"author": "Sebastian Van Sande",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seppevs/wire-app.git"
},
"dependencies": {
"caller": "^1.0.1",
"camelcase": "^6.0.0",
"fn-args": "^5.0.0",
"globby": "^11.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.4.0"
}
}