package.json
 1  {
 2    "name": "has",
 3    "description": "Object.prototype.hasOwnProperty.call shortcut",
 4    "version": "1.0.3",
 5    "homepage": "https://github.com/tarruda/has",
 6    "author": {
 7      "name": "Thiago de Arruda",
 8      "email": "tpadilha84@gmail.com"
 9    },
10   "contributors": [
11      {
12        "name": "Jordan Harband",
13        "email": "ljharb@gmail.com",
14        "url": "http://ljharb.codes"
15      }
16    ],
17    "repository": {
18      "type": "git",
19      "url": "git://github.com/tarruda/has.git"
20    },
21    "bugs": {
22      "url": "https://github.com/tarruda/has/issues"
23    },
24    "license": "MIT",
25    "licenses": [
26      {
27        "type": "MIT",
28        "url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT"
29      }
30    ],
31    "main": "./src",
32    "dependencies": {
33      "function-bind": "^1.1.1"
34    },
35    "devDependencies": {
36      "@ljharb/eslint-config": "^12.2.1",
37      "eslint": "^4.19.1",
38      "tape": "^4.9.0"
39    },
40    "engines": {
41      "node": ">= 0.4.0"
42    },
43    "scripts": {
44      "lint": "eslint .",
45      "pretest": "npm run lint",
46      "test": "tape test"
47    }
48  }