-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "@flybywiresim/api-client",
"version": "0.16.2",
"description": "Client library for the FlyByWire Simulations API",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npx jest",
"build": "rollup -c",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/api-client.git"
},
"bugs": {
"url": "https://github.com/flybywiresim/api-client/issues"
},
"homepage": "https://github.com/flybywiresim/api-client#readme",
"keywords": [
"fs2020",
"fbw"
],
"files": [
"dist"
],
"author": "FlyByWire Simulations",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.2.2",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@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",
"rollup": "^2.57.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"typescript": "^4.0.5"
}
}