-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.62 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
67
68
69
70
71
{
"name": "obj-walker",
"version": "2.4.0",
"description": "Walk or map over objects in a depth-first preorder or postorder manner.",
"author": "David Sargeant",
"repository": "git://github.com/smartprocure/obj-walker.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run lint && npm test && npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration",
"build:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**"
},
"keywords": [
"tree",
"map",
"mapper",
"object",
"array",
"walk",
"walker",
"preorder",
"postorder",
"depth-first",
"search",
"json",
"pointer",
"ref",
"flatten",
"unflatten",
"find",
"leaves",
"traverse",
"compact",
"remove",
"truncate",
"async",
"modify",
"size"
],
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrder": ["^[./]"],
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"importOrderSeparation": true
},
"dependencies": {
"debug": "^4.3.7",
"json-decycle": "^2.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}