-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.47 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dot-path-value",
"version": "0.0.11",
"description": "Safely get deep nested properties using dot notation",
"author": "German Makarov <[email protected]>",
"private": false,
"homepage": "https://github.com/g-makarov/dot-path-value",
"repository": {
"type": "git",
"url": "https://github.com/g-makarov/dot-path-value"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/g-makarov/dot-path-value/issues"
},
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"prettier": "prettier --write src/**/*",
"prepublishOnly": "npm run test && npm run build",
"postversion": "git push && git push --tags",
"test": "jest --passWithNoTests"
},
"sideEffects": false,
"files": [
"dist",
"src",
"tsconfig.json"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"keywords": [
"dot",
"path",
"get",
"value",
"deep",
"nested",
"object",
"property",
"typescript",
"type",
"access",
"notation",
"array",
"set",
"update",
"change"
]
}