-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "sql-jsonpath-js",
"version": "1.0.0",
"description": "JavaScript implementation of the SQL/JSONPath API from SQL2016.",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "mocha",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc",
"diagram": "yarn build && node utils/generate-diagrams.js",
"types": "yarn build && node utils/generate-parser-types.js"
},
"author": "Matt Bishop, Marc Levin, Jeff Lowery",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mattbishop/sql-jsonpath-js"
},
"dependencies": {
"chevrotain": "^11.0.3",
"indexed-iterable": "^1.0.2",
"iterare": "^1.2.1",
"luxon": "^3.3.0"
},
"devDependencies": {
"@types/chai": "4.3.19",
"@types/luxon": "3.4.2",
"@types/mocha": "10.0.7",
"@types/node": "22.5.4",
"chai": "5.1.1",
"mocha": "10.7.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}