-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "igc-parser",
"version": "2.0.0",
"description": "IGC flight log parser",
"license": "MIT",
"author": "Tobias Bieniek <[email protected]>",
"files": [
"index.js",
"index.js.map",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/Turbo87/igc-parser",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"lint": "tslint --project . --format stylish",
"release": "release-it",
"test": "jest",
"test:watch": "jest --watchAll --notify"
},
"dependencies": {
"flight-recorder-manufacturers": "^2.0.0"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "7.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.7",
"igc-filename-parser": "1.0.0",
"jest": "29.7.0",
"release-it": "17.11.0",
"ts-jest": "29.2.5",
"tslint": "6.1.3",
"typescript": "5.7.3"
},
"engines": {
"node": ">=12"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testRegex": "test.ts$",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
}
}