-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "uql",
"version": "0.0.23",
"description": "UQL - Unstructured Query Language",
"author": "Sriramajeyam Sugumaran",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"lint": "yarn spellcheck",
"compile": "nearleyc src/grammar/grammar.ne -o src/grammar/grammar.ts && tsc",
"test": "yarn lint && yarn compile && jest",
"build": "rm -rf dist && yarn test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yesoreyeram/uql.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/yesoreyeram/uql/issues"
},
"homepage": "https://github.com/yesoreyeram/uql#readme",
"dependencies": {
"@yesoreyeram/nearley": "^3.0.0-beta.2",
"csv-parse": "4.12.0",
"dayjs": "^1.10.7",
"fast-xml-parser": "^4.3.5",
"js-yaml": "^4.1.0",
"jsonata": "1.8.7",
"lodash": "^4.17.21",
"moo": "^0.5.2",
"xml2js": "0.6.2"
},
"devDependencies": {
"@types/jest": "29.5.11",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.14.202",
"@types/moo": "^0.5.9",
"@types/nearley": "^2.11.2",
"@types/node": "18.19.0",
"@types/xml2js": "^0.4.9",
"cspell": "^5.19.7",
"jest": "29.7.0",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"resolutions": {
"braces": "3.0.3"
}
}