-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·124 lines (124 loc) · 2.95 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "fcjs",
"version": "1.0.1",
"description": "flight controller library based on multiwii serial protocol",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"deneme": "ts-node deneme.ts",
"start": "node lib/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags",
"test": "jest --watch",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "https://github.com/kubilaysalih/FlightControllerJS"
},
"keywords": [
"flight",
"drone",
"craft",
"typescript",
"msp",
"multiwii"
],
"author": "Kubilay Salih <kubilay@kubilay.io> (https://kubilay.io)",
"files": [
"lib"
],
"contributors": [{
"name": "Berk Duman",
"email": "berkduman9@gmail.com"
},
{
"name": "Abdullah Çavuş",
"email": "abdullahcavus58@gmail.com",
"url": "https://kozmonott.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"@types/serialport": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"serialport": "^7.1.5"
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
},
"eslintConfig": {
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-explicit-any": "off",
"arrow-parens": [
"off"
],
"consistent-return": "off",
"comma-dangle": "off",
"generator-star-spacing": "off",
"global-require": "off",
"import/no-extraneous-dependencies": "off",
"lines-between-class-members": "warn",
"no-console": "off",
"no-use-before-define": "off",
"no-unused-vars": "warn",
"no-undef": "off",
"no-multi-assign": "off",
"semi": [
"warn",
"never"
],
"quotes": [
"warn",
"single"
]
}
},
"eslintIgnore": [
"lib"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}