-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
81 lines (81 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-simconnect",
"version": "4.0.0",
"description": "A SimConnect client library for Node.JS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "npx rimraf dist && tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"test": "jest",
"link": "npm run build && cd dist && npm link",
"precommit": "pretty-quick --staged",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"generate-api-reference": "typedoc src/index.ts"
},
"author": "Even Arneberg Rognlien",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/EvenAR/node-simconnect.git"
},
"keywords": [
"FSX",
"P3D",
"SDK",
"SimConnect",
"Prepar3D",
"FlightSimulator",
"Simulator"
],
"bugs": {
"url": "https://github.com/EvenAR/node-simconnect/issues"
},
"homepage": "https://github.com/EvenAR/node-simconnect#readme",
"devDependencies": {
"@types/bytebuffer": "^5.0.44",
"@types/debug": "^4.1.7",
"@types/ini": "^1.3.30",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.4",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/node": "*",
"bytebuffer": "^5.0.1",
"debug": "^4.3.4",
"ini": "^2.0.0",
"regedit": "^5.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"files": [
"/dist",
"/samples",
"./package.json",
"./package-lock.json",
"./README.md",
"./LICENCE"
]
}