UNPKG

782 BJSONView Raw
1{
2 "name": "dot-prop",
3 "version": "2.4.0",
4 "description": "Get, set, or delete a property from a nested object using a dot path",
5 "license": "MIT",
6 "repository": "sindresorhus/dot-prop",
7 "author": {
8 "name": "Sindre Sorhus",
9 "email": "sindresorhus@gmail.com",
10 "url": "sindresorhus.com"
11 },
12 "engines": {
13 "node": ">=0.10.0"
14 },
15 "scripts": {
16 "test": "ava && xo",
17 "bench": "matcha bench.js"
18 },
19 "files": [
20 "index.js"
21 ],
22 "keywords": [
23 "obj",
24 "object",
25 "prop",
26 "property",
27 "dot",
28 "path",
29 "get",
30 "set",
31 "delete",
32 "del",
33 "access",
34 "notation",
35 "dotty"
36 ],
37 "dependencies": {
38 "is-obj": "^1.0.0"
39 },
40 "devDependencies": {
41 "ava": "*",
42 "matcha": "^0.6.1",
43 "xo": "*"
44 }
45}