{
  "name": "infector",
  "version": "1.0.7",
  "description": "Dependency injection for Node.js and the browser.",
  "main": "./lib/infector.js",
  "homepage": "https://github.com/tanem/infector",
  "scripts": {
    "lint": "jshint ./lib/*.js ./test/*.js",
    "test-browser": "npm run lint && testling",
    "test-spec": "npm run lint && NODE_ENV=test mocha -b --reporter spec",
    "test-cov": "npm run lint && NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
    "test-coveralls": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
    "test": "npm run test-coveralls"
  },
  "keywords": [
    "dependency",
    "injection",
    "node"
  ],
  "author": {
    "name": "Tane Morgan",
    "url": "http://github.com/tanem"
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/tanem/infector.git"
  },
  "engines": {
    "node": ">= 0.10.18"
  },
  "license": "MIT",
  "devDependencies": {
    "expect.js": "~0.2.0",
    "mocha": "~1.12.1",
    "coveralls": "^2.10.1",
    "jshint": "^2.5.1",
    "istanbul": "^0.2.13",
    "testling": "^1.7.0"
  },
  "dependencies": {
    "lodash": "^2.4.1"
  },
  "testling": {
    "harness": "mocha",
    "browsers": [
      "ie/latest",
      "chrome/latest",
      "firefox/latest",
      "safari/latest",
      "opera/latest",
      "iphone/latest",
      "ipad/latest",
      "android-browser/latest"
    ],
    "files": [
      "test/infector.test.js"
    ]
  }
}