forked from juliangruber/deep-access
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 781 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "deep-get-set",
"description": "Set and get values on objects via dot-notation strings.",
"version": "1.1.2",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"repository": {
"type": "git",
"url": "git://github.com/acstll/deep-get-set.git"
},
"homepage": "https://github.com/acstll/deep-get-set",
"main": "index.js",
"scripts": {
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "tape test.js",
"test:cjs": "tape test.cjs"
},
"devDependencies": {
"tape": "^5.7.2"
},
"keywords": [
"deep",
"object",
"access",
"property",
"utility",
"nested",
"string"
],
"author": "Arturo Castillo Delgado <[email protected]>",
"license": "MIT"
}