-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "di-ioc",
"version": "1.8.0",
"description": "Node.js dependency injection.",
"main": "index.js",
"scripts": {
"build-doc": "mkdir -p out; cp node_modules/spec-md/css/* out; spec-md doc/index.md > out/index.html",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha test && ([[ -z $TRAVIS_JOB_ID ]] || npm run travis)",
"coverage": "mkdir -p coverage && mocha -r blanket -R html-cov > coverage/index.html",
"travis": "mocha -r blanket -R mocha-lcov-reporter | coveralls"
},
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aantthony/di-ioc.git"
},
"author": "Anthony Foster",
"license": "MIT",
"bugs": {
"url": "https://github.com/aantthony/di-ioc/issues"
},
"homepage": "http://af.id.au/di-ioc/",
"dependencies": {
"es6-promise": "^3.0.2",
"fn-annotate": "^1.1.1",
"private-accessor": "^1.1.1"
},
"devDependencies": {
"blanket": "^1.1.7",
"coveralls": "^2.11.4",
"eslint": "^1.4.3",
"expect": "^1.10.0",
"mocha": "^2.3.2",
"mocha-lcov-reporter": "0.0.2",
"spec-md": "^0.3.7"
},
"directories": {
"doc": "doc",
"test": "test"
}
}