-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "@balena/lf-to-abstract-sql",
"version": "5.0.3",
"description": "LF to Abstract SQL translator.",
"main": "index.js",
"scripts": {
"lint": "balena-lint -e js test index.js",
"lint-fix": "balena-lint --fix -e js test index.js",
"pretest": "npm run prepare",
"test": "mocha",
"posttest": "npm run lint",
"prepublish": "require-npm4-to-publish",
"prepare": "ometajs2js --commonjs --input lf-to-abstract-sql.ometajs --output lf-to-abstract-sql.js && ometajs2js --commonjs --input lf-to-abstract-sql-prep.ometajs --output lf-to-abstract-sql-prep.js && ometajs2js --commonjs --input sbvr-compiler-libs.ometajs --output sbvr-compiler-libs.js"
},
"repository": "https://github.com/balena-io-modules/lf-to-abstract-sql.git",
"author": "",
"license": "BSD",
"dependencies": {
"@balena/sbvr-parser": "^1.4.3",
"lodash": "^4.17.21",
"ometa-js": "^1.5.4"
},
"devDependencies": {
"@balena/lint": "^6.2.1",
"@balena/sbvr-types": "^7.0.1",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"require-npm4-to-publish": "^1.0.0"
},
"mocha": {
"reporter": "spec",
"recursive": true,
"bail": true,
"timeout": 5000,
"_": "test/**/*.js"
},
"versionist": {
"publishedAt": "2024-12-03T12:46:45.449Z"
}
}