package.json
 1  {
 2    "name": "define-property",
 3    "description": "Define a non-enumerable property on an object.",
 4    "version": "0.2.5",
 5    "homepage": "https://github.com/jonschlinkert/define-property",
 6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
 7    "repository": "jonschlinkert/define-property",
 8    "bugs": {
 9      "url": "https://github.com/jonschlinkert/define-property/issues"
10    },
11    "license": "MIT",
12    "files": [
13      "index.js"
14    ],
15    "main": "index.js",
16    "engines": {
17      "node": ">=0.10.0"
18    },
19    "scripts": {
20      "test": "mocha"
21    },
22    "devDependencies": {
23      "mocha": "*",
24      "should": "^7.0.4"
25    },
26    "keywords": [
27      "define",
28      "define-property",
29      "enumerable",
30      "key",
31      "non",
32      "non-enumerable",
33      "object",
34      "prop",
35      "property",
36      "value"
37    ],
38    "verb": {
39      "related": {
40        "list": [
41          "mixin-deep",
42          "mixin-object",
43          "delegate-object",
44          "forward-object"
45        ]
46      }
47    },
48    "dependencies": {
49      "is-descriptor": "^0.1.0"
50    }
51  }