-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 1.89 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
{
"name": "arduino-cereal",
"version": "1.1.0",
"description": "Drop-in replacement for Arduino serial monitor",
"license": "MIT",
"homepage": "https://github.com/mladenilic/arduino-cereal#readme",
"repository": {
"type": "git",
"url": "https://github.com/mladenilic/arduino-cereal.git"
},
"bugs": {
"url": "https://github.com/mladenilic/arduino-cereal/issues"
},
"keywords": [
"arduino",
"serial",
"monitor"
],
"author": "Mladen Ilic (https://github.com/mladenilic)",
"bin": {
"arduino-cereal": "lib/index.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava",
"build": "rm -rf lib/ && babel src -d lib",
"start": "babel-node ./src"
},
"files": [
"lib"
],
"dependencies": {
"ink": "^3.0.8",
"lodash.merge": "^4.6.2",
"meow": "^8.0.0",
"react": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"serialport": "^9.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/register": "^7.12.1",
"ava": "^3.13.0",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"ink-testing-library": "^2.1.0",
"xo": "^0.35.0"
},
"ava": {
"babel": true,
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"space": true,
"rules": {
"react/prop-types": "off",
"object-curly-spacing": "off",
"import/no-anonymous-default-export": "off",
"default-param-last": "off",
"no-unused-expressions": [
"error",
{
"allowTernary": true
}
]
}
}
}