forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.6 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
{
"name": "serialport",
"version": "5.0.0",
"description": "Node.js package to access serial ports. Linux, OSX and Windows. Welcome your robotic JavaScript overlords. Better yet, program them!",
"author": {
"name": "Chris Williams",
"email": "[email protected]",
"url": "http://www.voodootikigod.com"
},
"binary": {
"module_name": "serialport",
"module_path": "build/{configuration}/",
"host": "https://github.com/EmergingTechnologyAdvisors/node-serialport/releases/download/5.0.0"
},
"main": "lib",
"repository": {
"type": "git",
"url": "git://github.com/EmergingTechnologyAdvisors/node-serialport.git"
},
"keywords": [
"ccTalk",
"com port",
"data logging",
"hardware",
"iot",
"johnny-five",
"modem",
"nodebots",
"RFID",
"sensor",
"serial port",
"serial",
"serialport",
"sms gateway",
"stream",
"tty",
"UART"
],
"maintainers": [
{
"name": "Jacob Rosenthal",
"email": "[email protected]"
},
{
"name": "Chris Williams",
"email": "[email protected]"
},
{
"name": "Joe Ferner",
"email": "[email protected]"
},
{
"name": "Jay Beavers",
"email": "[email protected]"
},
{
"name": "Rob Giseburt",
"email": "[email protected]"
},
{
"name": "Francis Gulotta",
"email": "[email protected]"
}
],
"dependencies": {
"bindings": "1.3.0",
"commander": "^2.11.0",
"debug": "^2.6.6",
"nan": "^2.6.2",
"node-pre-gyp": "^0.6.36",
"promirepl": "^1.0.1",
"safe-buffer": "^5.0.1"
},
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^4.0.2",
"chai-subset": "^1.5.0",
"eslint": "^4.1.1",
"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-to-markdown": "^3.0.0",
"mocha": "^3.4.2",
"node-pre-gyp-github": "^1.1.2",
"proxyquire": "^1.7.10",
"sinon": "^2.3.8"
},
"bundledDependencies": [
"node-pre-gyp"
],
"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",
"docs": "jsdoc2md --no-cache -t .docs/README.hbs --partial .docs/sig-name.hbs --partial .docs/sig-link.hbs --partial .docs/edit-warning.hbs -r table --separators --name-format -f lib/* lib/bindings/* lib/parsers/* > README.md",
"docs:diff": "jsdoc2md --no-cache -t .docs/README.hbs --partial .docs/sig-name.hbs --partial .docs/sig-link.hbs --partial .docs/edit-warning.hbs -r table --separators --name-format -f lib/* lib/bindings/* lib/parsers/* | diff README.md - || (echo 'Docs out of date, run `npm run docs` and commit the new README.md' && false)",
"install": "node-pre-gyp install --fallback-to-build",
"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"
},
"gypfile": true
}