forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.5 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
125
126
127
128
129
130
131
132
133
{
"name": "serialport",
"version": "6.1.1",
"description": "Node.js package to access serial ports. Linux, OSX and Windows. Welcome your robotic JavaScript overlords. Better yet, program them!",
"main": "lib",
"repository": {
"type": "git",
"url": "git://github.com/node-serialport/node-serialport.git"
},
"keywords": [
"ccTalk",
"com port",
"data logging",
"hardware",
"iot",
"johnny-five",
"modem",
"nodebots",
"RFID",
"sensor",
"serial port",
"serial",
"serialport",
"sms gateway",
"sms",
"stream",
"tty",
"UART"
],
"maintainers": [
{
"name": "Francis Gulotta",
"email": "wizard@roborooter.com",
"url": "https://www.roborooter.com"
},
{
"name": "Jacob Rosenthal",
"email": "jakerosenthal@gmail.com"
},
{
"name": "Chris Williams",
"email": "voodootikigod@gmail.com",
"url": "http://www.voodootikigod.com"
},
{
"name": "Joe Ferner",
"email": "joe.ferner@nearinfinity.com"
},
{
"name": "Jay Beavers",
"email": "jay@hikinghomeschoolers.org"
},
{
"name": "Rob Giseburt",
"email": "giseburt@gmail.com"
}
],
"dependencies": {
"bindings": "1.3.0",
"commander": "^2.13.0",
"debug": "^3.1.0",
"nan": "^2.9.2",
"parser-byte-length": "^1.0.2",
"parser-cctalk": "^1.0.2",
"parser-delimiter": "^1.0.2",
"parser-readline": "^1.0.2",
"parser-ready": "^1.0.2",
"parser-regex": "^1.0.2",
"prebuild-install": "^2.4.1",
"promirepl": "^1.0.1",
"prompt-list": "^3.1.2",
"safe-buffer": "^5.0.1"
},
"devDependencies": {
"bluebird": "^3.5.0",
"cc": "^1.0.1",
"chai": "^4.0.2",
"chai-subset": "^1.5.0",
"conventional-changelog-cli": "^1.3.15",
"docdash": "^0.4.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.4",
"jsdoc": "^3.5.5",
"mocha": "^5.0.0",
"prebuild": "^7.4.0",
"proxyquire": "^2.0.0",
"sinon": "^5.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"bin": {
"serialport-list": "./bin/list.js",
"serialport-repl": "./bin/repl.js",
"serialport-term": "./bin/terminal.js"
},
"license": "MIT",
"scripts": {
"arduino-test": "TEST_PORT=$(./bin/find-arduino.js) npm test",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"docs": "jsdoc -c ./.jsdoc.json ",
"lint": "eslint lib test bin examples && cc",
"rebuild-all": "npm rebuild && node-gyp rebuild",
"repl": "node bin/repl.js",
"terminal": "node bin/terminal.js",
"stress": "mocha --no-timeouts test/arduinoTest/stress.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"test:watch": "mocha -w",
"valgrind": "TEST_PORT=$(./bin/find-arduino.js) valgrind --leak-check=full node test/manual-testing/memory-binding.js",
"debugger": "TEST_PORT=$(./bin/find-arduino.js) node --inspect --debug-brk test/manual-testing/performance.js",
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose",
"prebuild-upload": "prebuild --all --strip --verbose"
},
"gypfile": true,
"cc": {
"filter": [
"legal/copyright",
"build/include"
],
"files": [
"src/*.cpp",
"src/*.h"
],
"linelength": "120"
}
}