-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.16 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.16 KB
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
{
"name": "injectr",
"version": "0.5.1",
"description": "Finally, a solution to node.js dependency injection",
"keywords": [
"dependency injection",
"mock",
"unit",
"test"
],
"author": {
"name": "Nathan MacInnes",
"email": "nathan@macinn.es",
"web": "http://macinn.es"
},
"main": "lib/injectr.js",
"bugs": {
"email": "nathan@macinn.es",
"url": "https://github.com/nathanmacinnes/injectr/issues"
},
"licenses": {
"type": "MIT",
"url": "http: //www.opensource.org/licenses/mit-license.php"
},
"repository": {
"type": "git",
"url": "https://github.com/nathanmacinnes/injectr"
},
"engines": {
"node": ">=0.6.x"
},
"devDependencies": {
"expect.js": "0.1.0 - 0.3.x",
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.10.2",
"jshint": "~2.5",
"mocha": "^1.18.2",
"pretendr": "~0.5"
},
"scripts": {
"test": "grunt test",
"lint": "grunt lint"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"Makefile",
"README.md",
"LICENSE",
"lib/",
"test/"
]
}