-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
105 lines (105 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "object-scan",
"type": "module",
"version": "0.0.0-development",
"description": "Traverse object hierarchies using matching and callbacks.",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "cp -rf ./src ./lib && ncc build -m -o lib && mv lib/index.js lib/index.min.js && cp src/index.js lib/index.js && rm lib/package.json",
"build-clean": "yarn run clean && yarn run build",
"test-simple": "c8 mocha --import=./test/reg.js \"./test/**/*.spec.js\"",
"test": "yarn run clean && yarn run gardener && yarn run test-simple",
"semantic-release": "yarn run build-clean && yarn exec semantic-release",
"gardener": "node gardener.js",
"docker": "docker run --net host -u`id -u`:`id -g` -v $(pwd):/user/project -v ~/.aws:/user/.aws -v ~/.npmrc:/user/.npmrc -w /user/project -it --entrypoint /bin/bash",
"t": "yarn test",
"ts": "yarn run test-simple",
"tsv": "yarn run test-simple --verbose",
"u": "yarn upgrade --latest --force",
"i": "yarn install --frozen-lockfile",
"it": "yarn run i && yarn run t",
"ncc-analyze": "yarn clean && cp -rf ./src ./lib && ncc build -m -s -o lib --stats-out stats.json && npx webpack-bundle-analyzer stats.json --mode static && rm stats.json && yarn clean"
},
"repository": {
"type": "git",
"url": "https://github.com/blackflux/object-scan.git"
},
"keywords": [
"object",
"tree",
"traversal",
"iterate",
"recursive",
"glob",
"matching",
"regex",
"search",
"scan",
"find",
"walk",
"path",
"filter",
"jsonpath",
"jmespath",
"xpath"
],
"author": "Lukas Siemon",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackflux/object-scan/issues"
},
"homepage": "https://github.com/blackflux/object-scan#readme",
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/eslint-parser": "7.26.5",
"@babel/register": "7.25.9",
"@blackflux/eslint-plugin-rules": "4.0.0",
"@blackflux/robo-config-plugin": "10.0.0",
"@eslint/eslintrc": "3.2.0",
"@vercel/ncc": "0.38.3",
"axios": "1.7.9",
"c8": "10.1.3",
"chai": "5.1.2",
"diff": "7.0.0",
"diff2html": "3.4.51",
"eslint": "9.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-mocha": "10.5.0",
"github-slugger": "2.0.0",
"jmespath": "0.16.0",
"joi-strict": "4.0.0",
"js-gardener": "6.0.2",
"json-stringify-pretty-compact": "4.0.0",
"jsonpath": "1.1.1",
"jsonpath-plus": "10.2.0",
"lodash.clonedeep": "4.5.0",
"lodash.get": "4.4.2",
"lodash.isequal": "4.5.0",
"mustache": "4.2.0",
"nimma": "0.7.1",
"node-tdd": "6.0.0",
"object-scan": "20.0.0",
"promise-pool-ext": "3.3.0",
"smart-fs": "5.0.1",
"stringify-object": "5.0.0",
"uuid": "11.0.5"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blackflux/object-scan/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 20"
},
"files": [
"lib"
],
"dependencies": {},
"peerDependencies": {}
}