-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
62
{
"name": "electrolyte",
"version": "0.7.1",
"description": "Elegant dependency injection for Node.js.",
"keywords": [
"require",
"dependency",
"dependencies",
"injection",
"di",
"ioc"
],
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
},
"contributors": [
{
"name": "Jeremie Miller",
"email": "[email protected]",
"url": "http://jeremie.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/electrolyte.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/electrolyte/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"canonical-path": "0.0.2",
"debug": "^2.2.0",
"depd": "^1.0.1",
"p-filter": "2.1",
"promise": "^7.1.1",
"scripts": "0.1.x"
},
"devDependencies": {
"chai": "3.x.x",
"chai-express-handler": "git://github.com/jaredhanson/chai-express-handler.git",
"make-node": "0.3.x",
"mocha": "2.x.x",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
}
}