-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "spur-ioc",
"description": "Dependency Injection library for Node.js",
"version": "2.1.0",
"main": "./src/Injector",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest test/",
"test:dev": "npm run test -- --watch"
},
"author": {
"name": "Agustin Colchado",
"email": "agustin@colchado.com"
},
"contributors": [
{
"name": "Siavash Etemadieh",
"email": "ssetem@googlemail.com"
},
{
"name": "Joseph McElroy",
"email": "phoey1@gmail.com"
},
{
"name": "Timmy Willison",
"email": "timmywillisn@gmail.com"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"spur",
"spur-framework",
"IoC",
"di",
"inversion of control",
"dependency",
"dependency injection",
"container"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/opentable/spur-ioc/issues"
},
"homepage": "https://github.com/opentable/spur-ioc",
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-ioc.git"
},
"dependencies": {
"lodash.assign": "4.2.0",
"lodash.bindall": "4.4.0",
"require-all": "3.0.0"
},
"devDependencies": {
"eslint": "8.57.0",
"jest": "29.7.0"
}
}