UNPKG

992 BJSONView Raw
1{
2 "name": "depject",
3 "description": "simplest dependency injection",
4 "version": "4.0.0",
5 "homepage": "https://github.com/dominictarr/depject",
6 "author": "Dominic Tarr (http://dominictarr.com)",
7 "maintainers": [
8 "ahdinosaur",
9 "pietgeursen",
10 "mixmix"
11 ],
12 "repository": "dominictarr/depject",
13 "bugs": {
14 "url": "https://github.com/dominictarr/depject/issues"
15 },
16 "license": "MIT",
17 "main": "index.js",
18 "engines": {
19 "node": ">=4"
20 },
21 "dependencies": {
22 "libnested": "^1.1.0"
23 },
24 "devDependencies": {
25 "deep-freeze": "0.0.1",
26 "dependency-check": "^2.7.0",
27 "istanbul": "^0.4.5",
28 "standard": "^8.6.0",
29 "tape": "^4.6.2"
30 },
31 "scripts": {
32 "test": "npm run test:node && npm run test:deps && npm run test:lint",
33 "test:node": "tape test/*.js",
34 "test:lint": "standard",
35 "test:deps": "dependency-check . && dependency-check . --extra --no-dev",
36 "test:coverage": "NODE_ENV=test istanbul cover tape test/*.js"
37 }
38}