forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.06 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
{
"name": "serialport",
"version": "6.0.4",
"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.6.2",
"prebuild-install": "^2.4.1",
"promirepl": "^1.0.1",
"safe-buffer": "^5.0.1"
},
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^4.0.2",
"chai-subset": "^1.5.0",
"conventional-changelog-cli": "^1.3.2",
"docdash": "^0.4.0",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.4",
"jsdoc": "^3.5.5",
"mocha": "^4.0.0",
"prebuild": "^7.0.0",
"proxyquire": "^1.7.10",
"sinon": "^4.1.5"
},
"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 -p angular -s",
"docs": "jsdoc -c ./.jsdoc.json ",
"lint": "eslint lib test bin examples",
"rebuild-all": "npm rebuild && node-gyp rebuild",
"repl": "node bin/repl.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
}