@common.js/object-scan 20.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +5 -0
- package/lib/core/compiler-iterator.js +109 -0
- package/lib/core/compiler.js +164 -0
- package/lib/core/context.js +149 -0
- package/lib/core/find-result.js +77 -0
- package/lib/core/find-util.js +92 -0
- package/lib/core/find.js +297 -0
- package/lib/core/node-util.js +94 -0
- package/lib/core/node.js +151 -0
- package/lib/core/parser-ref.js +59 -0
- package/lib/core/parser-result.js +218 -0
- package/lib/core/parser-value.js +24 -0
- package/lib/core/parser.js +205 -0
- package/lib/generic/assert.js +16 -0
- package/lib/generic/helper.js +85 -0
- package/lib/generic/iterator.js +97 -0
- package/lib/index.js +97 -0
- package/lib/index.min.js +1443 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@common.js/object-scan",
|
|
3
|
+
"type": "commonjs",
|
|
4
|
+
"version": "20.0.4",
|
|
5
|
+
"description": "object-scan package exported as CommonJS modules",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"clean": "rm -rf lib",
|
|
9
|
+
"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",
|
|
10
|
+
"build-clean": "yarn run clean && yarn run build",
|
|
11
|
+
"test-simple": "c8 mocha --import=./test/reg.js \"./test/**/*.spec.js\"",
|
|
12
|
+
"test": "yarn run clean && yarn run gardener && yarn run test-simple",
|
|
13
|
+
"semantic-release": "yarn run build-clean && yarn exec semantic-release",
|
|
14
|
+
"gardener": "node gardener.js",
|
|
15
|
+
"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",
|
|
16
|
+
"t": "yarn test",
|
|
17
|
+
"ts": "yarn run test-simple",
|
|
18
|
+
"tsv": "yarn run test-simple --verbose",
|
|
19
|
+
"u": "yarn upgrade --latest --force",
|
|
20
|
+
"i": "yarn install --frozen-lockfile",
|
|
21
|
+
"it": "yarn run i && yarn run t",
|
|
22
|
+
"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"
|
|
23
|
+
},
|
|
24
|
+
"repository": "etienne-martin/common.js",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/blackflux/object-scan/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/etienne-martin/common.js#readme",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/core": "7.28.5",
|
|
32
|
+
"@babel/eslint-parser": "7.28.5",
|
|
33
|
+
"@babel/register": "7.28.3",
|
|
34
|
+
"@blackflux/eslint-plugin-rules": "4.0.1",
|
|
35
|
+
"@blackflux/robo-config-plugin": "10.0.7",
|
|
36
|
+
"@eslint/eslintrc": "3.3.3",
|
|
37
|
+
"@vercel/ncc": "0.38.4",
|
|
38
|
+
"axios": "1.13.2",
|
|
39
|
+
"c8": "10.1.3",
|
|
40
|
+
"chai": "6.2.1",
|
|
41
|
+
"diff": "8.0.2",
|
|
42
|
+
"diff2html": "3.4.52",
|
|
43
|
+
"eslint": "9.39.1",
|
|
44
|
+
"eslint-config-airbnb-base": "15.0.0",
|
|
45
|
+
"eslint-plugin-import": "2.32.0",
|
|
46
|
+
"eslint-plugin-json": "4.0.1",
|
|
47
|
+
"eslint-plugin-markdown": "5.1.0",
|
|
48
|
+
"eslint-plugin-mocha": "10.5.0",
|
|
49
|
+
"github-slugger": "2.0.0",
|
|
50
|
+
"jmespath": "0.16.0",
|
|
51
|
+
"joi-strict": "4.0.1",
|
|
52
|
+
"js-gardener": "6.0.4",
|
|
53
|
+
"json-stringify-pretty-compact": "4.0.0",
|
|
54
|
+
"jsonpath": "1.1.1",
|
|
55
|
+
"jsonpath-plus": "10.3.0",
|
|
56
|
+
"lodash.clonedeep": "4.5.0",
|
|
57
|
+
"lodash.get": "4.4.2",
|
|
58
|
+
"lodash.isequal": "4.5.0",
|
|
59
|
+
"mustache": "4.2.0",
|
|
60
|
+
"nimma": "0.7.2",
|
|
61
|
+
"node-tdd": "6.2.3",
|
|
62
|
+
"object-scan": "20.0.2",
|
|
63
|
+
"promise-pool-ext": "4.0.1",
|
|
64
|
+
"smart-fs": "5.0.2",
|
|
65
|
+
"stringify-object": "6.0.0"
|
|
66
|
+
},
|
|
67
|
+
"licenses": [
|
|
68
|
+
{
|
|
69
|
+
"type": "MIT",
|
|
70
|
+
"url": "https://github.com/blackflux/object-scan/blob/master/LICENSE"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">= 20"
|
|
75
|
+
},
|
|
76
|
+
"files": [
|
|
77
|
+
"lib"
|
|
78
|
+
],
|
|
79
|
+
"dependencies": {},
|
|
80
|
+
"peerDependencies": {}
|
|
81
|
+
}
|