forked from CockpitConnect/msfs-simconnect-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "nodejs-simconnect",
"author": {
"name": "Giorgio Bella"
},
"version": "0.3.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bgiorgio0506/nodejs-simconnect.git"
},
"description": "Microsoft Flight Simulator 2020 SimConnect wrapper for NodeJS",
"keywords": [
"msfs",
"FlightSimulator",
"SimConnect",
"SDK"
],
"bugs": {
"url": "https://github.com/bgiorgio0506/nodejs-simconnect/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bundleDependencies": false,
"dependencies": {
"nan": "^2.14.0"
},
"deprecated": false,
"gypfile": false,
"license": "MIT",
"scripts": {
"build": "node-gyp configure build --target=10.1.2 --msvs_version=2019 --arch=x64 --dist-url=https://atom.io/download/atom-shell",
"rebuild": "node-gyp configure rebuild --target=10.1.2 --msvs_version=2019 --arch=x64 --dist-url=https://atom.io/download/atom-shell"
}
}