-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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/abstract-sql-to-typescript",
"version": "5.0.1",
"description": "A translator for abstract sql into typescript types.",
"type": "commonjs",
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"exports": {
".": "./out/src/index.js",
"./generate": "./out/src/generate.js"
},
"scripts": {
"pretest": "npm run prepare",
"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 && tsc --project ./tsconfig.build.json",
"lint": "balena-lint src test && tsc --noEmit",
"lint-fix": "balena-lint --fix src test"
},
"repository": "https://github.com/balena-io-modules/abstract-sql-to-typescript.git",
"author": "",
"dependencies": {
"@balena/abstract-sql-compiler": "^10.0.1",
"@balena/odata-to-abstract-sql": "^7.0.0",
"@types/node": "^20.16.5",
"common-tags": "^1.8.2"
},
"peerDependencies": {
"@balena/sbvr-types": "^7.1.0, ^8.0.0, ^9.0.0"
},
"devDependencies": {
"@balena/lint": "^9.0.1",
"@types/chai": "^4.3.19",
"@types/common-tags": "^1.8.4",
"@types/mocha": "^10.0.7",
"chai": "^4.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.14.0",
"npm": ">=10.7.0"
},
"lint-staged": {
"*.ts": [
"balena-lint --fix"
]
},
"mocha": {
"require": "ts-node/register/transpile-only",
"_": "test/**/*.ts"
},
"versionist": {
"publishedAt": "2024-10-22T10:37:47.354Z"
}
}