UNPKG

3.7 kBJSONView Raw
1{
2 "name": "serialport",
3 "version": "6.0.0",
4 "description": "Node.js package to access serial ports. Linux, OSX and Windows. Welcome your robotic JavaScript overlords. Better yet, program them!",
5 "author": {
6 "name": "Chris Williams",
7 "email": "voodootikigod@gmail.com",
8 "url": "http://www.voodootikigod.com"
9 },
10 "main": "lib",
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/EmergingTechnologyAdvisors/node-serialport.git"
14 },
15 "keywords": [
16 "ccTalk",
17 "com port",
18 "data logging",
19 "hardware",
20 "iot",
21 "johnny-five",
22 "modem",
23 "nodebots",
24 "RFID",
25 "sensor",
26 "serial port",
27 "serial",
28 "serialport",
29 "sms gateway",
30 "sms",
31 "stream",
32 "tty",
33 "UART"
34 ],
35 "maintainers": [
36 {
37 "name": "Jacob Rosenthal",
38 "email": "jakerosenthal@gmail.com"
39 },
40 {
41 "name": "Chris Williams",
42 "email": "voodootikigod@gmail.com"
43 },
44 {
45 "name": "Joe Ferner",
46 "email": "joe.ferner@nearinfinity.com"
47 },
48 {
49 "name": "Jay Beavers",
50 "email": "jay@hikinghomeschoolers.org"
51 },
52 {
53 "name": "Rob Giseburt",
54 "email": "giseburt@gmail.com"
55 },
56 {
57 "name": "Francis Gulotta",
58 "email": "wizard@roborooter.com"
59 }
60 ],
61 "dependencies": {
62 "bindings": "1.3.0",
63 "commander": "^2.11.0",
64 "debug": "^3.0.1",
65 "nan": "^2.6.2",
66 "prebuild-install": "^2.2.1",
67 "promirepl": "^1.0.1",
68 "safe-buffer": "^5.0.1"
69 },
70 "devDependencies": {
71 "bluebird": "^3.5.0",
72 "chai": "^4.0.2",
73 "chai-subset": "^1.5.0",
74 "conventional-changelog-cli": "^1.3.2",
75 "eslint": "^4.7.2",
76 "eslint-config-standard": "^10.2.1",
77 "eslint-plugin-import": "^2.7.0",
78 "eslint-plugin-node": "^5.1.0",
79 "eslint-plugin-promise": "^3.5.0",
80 "eslint-plugin-standard": "^3.0.1",
81 "istanbul": "^0.4.4",
82 "jsdoc-to-markdown": "^3.0.0",
83 "mocha": "^4.0.0",
84 "prebuild": "^6.2.1",
85 "proxyquire": "^1.7.10",
86 "sinon": "^4.0.0"
87 },
88 "engines": {
89 "node": ">=4.0.0"
90 },
91 "bin": {
92 "serialport-list": "./bin/list.js",
93 "serialport-repl": "./bin/repl.js",
94 "serialport-term": "./bin/terminal.js"
95 },
96 "license": "MIT",
97 "scripts": {
98 "arduino-test": "TEST_PORT=$(./bin/find-arduino.js) npm test",
99 "changelog": "conventional-changelog -i CHANGELOG.md -p angular -s",
100 "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",
101 "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)",
102 "lint": "eslint lib test bin examples",
103 "rebuild-all": "npm rebuild && node-gyp rebuild",
104 "repl": "node bin/repl.js",
105 "stress": "mocha --no-timeouts test/arduinoTest/stress.js",
106 "test": "istanbul cover ./node_modules/mocha/bin/_mocha",
107 "test:watch": "mocha -w",
108 "valgrind": "TEST_PORT=$(./bin/find-arduino.js) valgrind --leak-check=full node test/manual-testing/memory-binding.js",
109 "debugger": "TEST_PORT=$(./bin/find-arduino.js) node --inspect --debug-brk test/manual-testing/performance.js",
110 "install": "prebuild-install || node-gyp rebuild",
111 "rebuild": "prebuild --compile",
112 "prebuild": "prebuild --all --strip --verbose",
113 "prebuild-upload": "prebuild --all --strip --verbose"
114 },
115 "gypfile": true
116}