forked from mariocasciaro/scatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"author": {
"name": "Mario Casciaro"
},
"name": "scatter",
"description": "IoC container and out-of-the-box extensibility for Node.js applications",
"homepage": "https://github.com/mariocasciaro/scatter",
"version": "0.8.3",
"repository": {
"type": "git",
"url": "git://github.com/mariocasciaro/scatter.git"
},
"main": "lib/index.js",
"dependencies": {
"lodash": "~2.4.1",
"minimatch": "~0.2.12",
"glob": "~3.2.3",
"readdirp": "~0.3.1",
"inherits": "~2.0.0",
"async": "~0.2.9",
"when": "~3.0.1"
},
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.15.1",
"rimraf": "~2.2.2",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.6.0",
"istanbul": "~0.1.46",
"benchpress": "~0.1.2"
},
"scripts": {
"test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test/*.js --report html -- -R spec"
},
"keywords": [
"dependency injection",
"inversion of control",
"extensibility",
"plugin system",
"architecture",
"hooks",
"ioc"
],
"license": "MIT"
}