-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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": "@sukvojte/serialport-binding-rs485",
"version": "1.0.0",
"main": "lib",
"keywords": [
"serialport-binding-rs485"
],
"dependencies": {
"@serialport/binding-abstract": "^9.0.2",
"@serialport/parser-readline": "^9.0.1",
"bindings": "^1.5.0",
"debug": "^4.1.1",
"nan": "^2.14.1",
"prebuild-install": "^5.3.5"
},
"devDependencies": {
"@serialport/binding-mock": "^9.0.2",
"node-abi": "^2.18.0"
},
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"install": "prebuild-install --tag-prefix @serialport/bindings@ || node-gyp rebuild",
"lint": "cc --verbose",
"prebuild": "prebuild --all --force --strip --verbose --tag-prefix @serialport/bindings@",
"rebuild": "node-gyp rebuild"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com:sukvojte/serialport-binding-rs485.git"
},
"gypfile": true,
"cc": {
"filter": [
"legal/copyright",
"build/include"
],
"files": [
"src/*.cpp",
"src/*.h"
],
"linelength": "120"
}
}