-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.64 KB
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
67
68
69
70
71
{
"name": "obj-path-attic",
"version": "0.0.2",
"description": "Utility package for handling deeply nested object paths.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "vitest",
"lint": "npx eslint src/**",
"format": "npx prettier . --write",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [
"path",
"obj",
"object",
"nested",
"prop",
"dot notation",
"dot",
"object-path",
"nested-data",
"utility",
"javascript",
"typescript"
],
"author": {
"name": "Jan Eckerlein",
"email": "eckerlein.jan@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jan-Eckerlein/objPathAttic.git"
},
"bugs": {
"url": "https://github.com/Jan-Eckerlein/objPathAttic"
},
"homepage": "https://github.com/Jan-Eckerlein/objPathAttic#readme",
"devDependencies": {
"@types/node": "^22.9.1",
"typescript": "^5.6.3",
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}