forked from snd/hinoki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
58
59
60
{
"name": "hinoki",
"version": "1.0.0-rc.5",
"description": "effective yet simple dependency injection and more for Node.js and browsers",
"keywords": [
"inversion",
"control",
"dependency",
"injection",
"ioc",
"container",
"lifetime",
"factory"
],
"homepage": "http://github.com/snd/hinoki",
"author": {
"name": "Maximilian Krüger",
"email": "kruemaxi@gmail.com",
"url": "http://github.com/snd"
},
"bugs": {
"url": "http://github.com/snd/hinoki/issues",
"email": "kruemaxi@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/snd/hinoki.git"
},
"licenses": {
"type": "MIT",
"url": "git://github.com/snd/hinoki/LICENSE"
},
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"bluebird": "2.9.34",
"lodash": "3.10.1",
"helfer": "0.1.0"
},
"devDependencies": {
"codecov.io": "0.1.6",
"coffee-script": "1.9.3",
"tape": "4.2.0",
"coffeetape": "1.0.1",
"istanbul": "0.3.19",
"zuul": "3.3.1",
"coffeeify": "1.1.0"
},
"scripts": {
"compile": "coffee --bare --compile --output lib src",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "coffeetape test/*.coffee test/*.js",
"test-with-codecov": "istanbul cover coffeetape test/*.coffee test/*.js && cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js",
"test-zuul": "zuul test/*.js test/*.coffee",
"test-zuul-local": "zuul --local 8080 test/*.js test/*.coffee"
},
"main": "lib/hinoki"
}