-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "@balena/odata-to-abstract-sql",
"version": "7.0.0",
"description": "A consumer of the OData parser, written in OMeta",
"type": "commonjs",
"main": "out/odata-to-abstract-sql.js",
"scripts": {
"lint": "balena-lint -e js -e ts src test && tsc --noEmit && tsc --noEmit --project tsconfig.js.json",
"lint-fix": "balena-lint -e js -e ts --fix src test",
"pretest": "npm run prepare",
"test": "mocha && npm run lint",
"prepublish": "require-npm4-to-publish",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && tsc"
},
"repository": "https://github.com/balena-io-modules/odata-to-abstract-sql.git",
"author": "",
"license": "BSD",
"dependencies": {
"@balena/abstract-sql-compiler": "^10.0.1",
"@balena/odata-parser": "^3.1.0",
"@types/lodash": "^4.17.10",
"@types/memoizee": "^0.4.11",
"@types/string-hash": "^1.1.3",
"lodash": "^4.17.21",
"memoizee": "^0.4.17",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@balena/lf-to-abstract-sql": "^5.0.2",
"@balena/lint": "^8.2.8",
"@balena/sbvr-parser": "^1.4.6",
"@balena/sbvr-types": "^9.0.2",
"@types/chai": "^4.3.20",
"@types/chai-things": "0.0.38",
"@types/mocha": "^10.0.8",
"chai": "^4.5.0",
"chai-things": "~0.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"require-npm4-to-publish": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"mocha": {
"reporter": "spec",
"recursive": true,
"require": "ts-node/register/transpile-only",
"bail": true,
"_": "test/*.js"
},
"engines": {
"node": ">=20.14.0",
"npm": ">=10.7.0"
},
"versionist": {
"publishedAt": "2024-10-08T09:36:04.565Z"
}
}