-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"name": "@balena/odata-parser",
"version": "3.1.2",
"description": "An OData parser written in OMeta",
"main": "odata-parser.js",
"scripts": {
"lint": "balena-lint -e ts -e js --typescript odata-parser.d.ts test && tsc --noEmit --project tsconfig.js.json",
"pretest": "npm run prepare && npx tsc --noEmit odata-parser.d.ts",
"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 && peggy --source-map --extra-options-file odata-parser.config.json --output odata-parser.js odata-parser.pegjs",
"lint-fix": "balena-lint -e ts -e js --typescript --fix odata-parser.d.ts test"
},
"repository": "https://github.com/balena-io-modules/odata-parser.git",
"author": "",
"license": "BSD",
"devDependencies": {
"@balena/lint": "^8.2.8",
"@types/chai": "^4.3.20",
"@types/lodash": "^4.17.10",
"@types/mocha": "^10.0.8",
"chai": "^4.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"peggy": "^4.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"mocha": {
"reporter": "spec",
"recursive": true,
"require": "ts-node/register/transpile-only",
"_": "test/run.js"
},
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"versionist": {
"publishedAt": "2024-10-04T15:48:57.974Z"
}
}