-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "@withinnode/dotnot",
"version": "1.0.1",
"description": "Dot notation getter and setter",
"type": "module",
"exports": {
"types": "./types/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"scripts": {
"lint": "eslint lib/ test/ bench/ scripts/",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage",
"bench": "node scripts/bench.js",
"postinstall": "node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/withinnode/dotnot.git"
},
"devDependencies": {
"benchmark": "^2.1.4",
"dot-object": "^2.1.5",
"dot-prop": "^9.0.0",
"eslint": "^8.57.1",
"keypather": "^3.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"mpath": "^0.9.0",
"patch-package": "^8.0.0",
"resolve-dotstringkey": "^1.1.1"
}
}