-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "@flybywiresim/msfs-nodejs",
"version": "0.4.0",
"description": "Wrapper around the MSFS SDK for Node.JS applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build:simconnect-bindings": "cd src/bindings/simconnect && node-gyp rebuild",
"build:bindings": "npm run build:simconnect-bindings",
"build:rollup": "rollup -c",
"build:all": "npm run build:bindings && npm run build:rollup",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/msfs-nodejs.git"
},
"bugs": {
"url": "https://github.com/flybywiresim/msfs-nodejs/issues"
},
"homepage": "https://github.com/flybywiresim/msfs-nodejs#readme",
"keywords": [
"fs2020",
"fbw"
],
"files": [
"dist"
],
"author": "FlyByWire Simulations",
"license": "MIT",
"devDependencies": {
"@flybywiresim/eslint-config": "^0.2.2",
"@jest/globals": "^29.3.1",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.2",
"jest": "^27.0.0",
"rollup": "^4.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^27.0.5",
"typescript": "^4.0.5"
},
"dependencies": {
"node-addon-api": "^5.0.0"
}
}