package.json
 1  {
 2    "name": "ip",
 3    "version": "1.1.5",
 4    "author": "Fedor Indutny <fedor@indutny.com>",
 5    "homepage": "https://github.com/indutny/node-ip",
 6    "repository": {
 7      "type": "git",
 8      "url": "http://github.com/indutny/node-ip.git"
 9    },
10    "main": "lib/ip",
11    "devDependencies": {
12      "jscs": "^2.1.1",
13      "jshint": "^2.8.0",
14      "mocha": "~1.3.2"
15    },
16    "scripts": {
17      "test": "jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter spec test/*-test.js",
18      "fix": "jscs lib/*.js test/*.js --fix"
19    },
20    "license": "MIT"
21  }