-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@balena/abstract-sql-compiler",
"version": "10.1.0",
"description": "A translator for abstract sql into sql.",
"type": "commonjs",
"main": "out/AbstractSQLCompiler.js",
"types": "out/AbstractSQLCompiler.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"pretest": "npm run build",
"test": "mocha",
"posttest": "npm run lint",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && npm run build",
"lint-fix": "balena-lint --fix -e js -e ts src/ test/",
"lint": "balena-lint -e js -e ts src/ test/ && tsc --noEmit && tsc --noEmit --project tsconfig.js.json"
},
"repository": "https://github.com/balena-io-modules/abstract-sql-compiler.git",
"author": "",
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"@balena/sbvr-types": "^7.1.0, ^8.0.0, ^9.0.2"
},
"devDependencies": {
"@balena/lf-to-abstract-sql": "^5.0.2",
"@balena/lint": "^8.2.8",
"@balena/odata-parser": "^3.1.0",
"@balena/odata-to-abstract-sql": "^6.4.0",
"@balena/sbvr-parser": "^1.4.6",
"@types/chai": "^4.3.4",
"@types/common-tags": "^1.8.4",
"@types/lodash": "^4.17.10",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.10",
"chai": "^4.3.7",
"common-tags": "^1.8.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.js": [
"balena-lint --fix"
],
"*.ts": [
"balena-lint --fix"
]
},
"mocha": {
"reporter": "spec",
"recursive": true,
"require": "ts-node/register/transpile-only",
"bail": true,
"_": [
"test/**/*.ts",
"test/**/*.js"
]
},
"engines": {
"node": ">=20.14.0",
"npm": ">=10.7.0"
},
"versionist": {
"publishedAt": "2024-10-24T14:43:40.037Z"
}
}