xlucene-parser 1.7.0 → 1.7.1

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.
Files changed (2) hide show
  1. package/package.json +57 -57
  2. package/scripts/fix-deps.js +0 -0
package/package.json CHANGED
@@ -1,58 +1,58 @@
1
1
  {
2
- "name": "xlucene-parser",
3
- "displayName": "xLucene Parser",
4
- "version": "1.7.0",
5
- "description": "Flexible Lucene-like evaluator and language parser",
6
- "homepage": "https://github.com/terascope/teraslice/tree/master/packages/xlucene-parser#readme",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/terascope/teraslice.git"
10
- },
11
- "license": "MIT",
12
- "author": "Terascope, LLC <info@terascope.io>",
13
- "sideEffects": false,
14
- "type": "module",
15
- "main": "dist/src/index.js",
16
- "typings": "dist/src/index.d.ts",
17
- "directories": {
18
- "lib": "dist/src",
19
- "test": "test"
20
- },
21
- "files": [
22
- "dist/src/**/*",
23
- "scripts/fix-deps.js"
24
- ],
25
- "scripts": {
26
- "benchmark": "yarn build && node bench/index.js",
27
- "prebuild": "./scripts/generate-engine.js",
28
- "build": "tsc --build",
29
- "build:watch": "yarn build --watch",
30
- "postinstall": "./scripts/fix-deps.js",
31
- "test": "ts-scripts test . --",
32
- "test:debug": "ts-scripts test --debug . --",
33
- "test:watch": "ts-scripts test --watch . --"
34
- },
35
- "dependencies": {
36
- "@terascope/types": "~1.4.0",
37
- "@terascope/utils": "~1.7.0",
38
- "peggy": "~4.2.0",
39
- "ts-pegjs": "~4.2.1"
40
- },
41
- "devDependencies": {
42
- "@turf/invariant": "~7.1.0",
43
- "@turf/random": "~7.1.0"
44
- },
45
- "engines": {
46
- "node": ">=18.18.0",
47
- "yarn": ">=1.22.19"
48
- },
49
- "publishConfig": {
50
- "access": "public",
51
- "registry": "https://registry.npmjs.org/"
52
- },
53
- "srcMain": "src/index.ts",
54
- "terascope": {
55
- "enableTypedoc": true,
56
- "testSuite": "unit"
57
- }
58
- }
2
+ "name": "xlucene-parser",
3
+ "displayName": "xLucene Parser",
4
+ "version": "1.7.1",
5
+ "description": "Flexible Lucene-like evaluator and language parser",
6
+ "homepage": "https://github.com/terascope/teraslice/tree/master/packages/xlucene-parser#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/terascope/teraslice.git"
10
+ },
11
+ "license": "MIT",
12
+ "author": "Terascope, LLC <info@terascope.io>",
13
+ "sideEffects": false,
14
+ "type": "module",
15
+ "main": "dist/src/index.js",
16
+ "typings": "dist/src/index.d.ts",
17
+ "directories": {
18
+ "lib": "dist/src",
19
+ "test": "test"
20
+ },
21
+ "files": [
22
+ "dist/src/**/*",
23
+ "scripts/fix-deps.js"
24
+ ],
25
+ "scripts": {
26
+ "benchmark": "yarn build && node bench/index.js",
27
+ "prebuild": "./scripts/generate-engine.js",
28
+ "build": "tsc --build",
29
+ "build:watch": "yarn build --watch",
30
+ "postinstall": "./scripts/fix-deps.js",
31
+ "test": "yarn workspace @terascope/scripts ts-scripts test ../xlucene-parser --",
32
+ "test:debug": "yarn workspace @terascope/scripts ts-scripts test --debug ../xlucene-parser --",
33
+ "test:watch": "yarn workspace @terascope/scripts ts-scripts test --watch ../xlucene-parser --"
34
+ },
35
+ "dependencies": {
36
+ "@terascope/types": "~1.4.1",
37
+ "@terascope/utils": "~1.7.1",
38
+ "peggy": "~4.2.0",
39
+ "ts-pegjs": "~4.2.1"
40
+ },
41
+ "devDependencies": {
42
+ "@turf/invariant": "~7.1.0",
43
+ "@turf/random": "~7.1.0"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.18.0",
47
+ "yarn": ">=1.22.19"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public",
51
+ "registry": "https://registry.npmjs.org/"
52
+ },
53
+ "srcMain": "src/index.ts",
54
+ "terascope": {
55
+ "enableTypedoc": true,
56
+ "testSuite": "unit"
57
+ }
58
+ }
File without changes