-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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": "@fboes/aerofly-patterns",
"version": "2.3.8",
"description": "Landegerät - Create landing pattern lessons for Aerofly FS 4.",
"main": "dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "node ./dist/index.test.js",
"prettier": "npx prettier --cache --write .",
"eslint": "npx eslint **/*.js --fix",
"build": "npm run prettier && npm run eslint && npm run test"
},
"bin": {
"aerofly-patterns": "dist/index.js"
},
"author": "Frank Boës <info@fboes.org> (https://3960.org/)",
"license": "MIT",
"type": "module",
"export": "dist/index.js",
"devDependencies": {
"@types/node": "^20.12.7",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@fboes/aerofly-custom-missions": "^1.1.0",
"@fboes/geojson": "^1.4.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fboes/aerofly-patterns.git"
},
"keywords": [
"aerofly-fs4",
"flight",
"simulator",
"cli",
"flightplan"
],
"bugs": {
"url": "https://github.com/fboes/aerofly-patterns/issues"
},
"homepage": "https://github.com/fboes/aerofly-patterns#readme"
}