forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.44 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
{
"name": "serialport",
"version": "3.1.2",
"description": "Node.js package to access serial ports. 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/voodootikigod/node-serialport/releases/download/3.1.2"
},
"main": "./lib/serialport",
"repository": {
"type": "git",
"url": "git://github.com/voodootikigod/node-serialport.git"
},
"keywords": [
"serialport",
"johnny-five",
"serial port",
"hardware",
"iot",
"nodebots"
],
"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.2.1",
"commander": "^2.9.0",
"debug": "^2.1.1",
"es6-promise": "^3.1.2",
"nan": "^2.3.3",
"node-pre-gyp": "^0.6.26",
"object.assign": "^4.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-subset": "^1.2.2",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"grunt": "^1.0.0",
"grunt-mocha-test": "^0.12.7",
"gruntify-eslint": "^2.0.0",
"mocha": "^2.4.5",
"node-pre-gyp-github": "^1.1.2",
"sandboxed-module": "^2.0.3",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"spawn-sync": "^1.0.15"
},
"bundledDependencies": [
"node-pre-gyp"
],
"engines": {
"node": ">= 0.10.0"
},
"bin": {
"serialportlist": "./bin/serialport-list.js",
"serialportterm": "./bin/serialport-terminal.js"
},
"license": "MIT",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"rebuild-all": "npm rebuild && node-gyp rebuild",
"gyp-rebuild": "node-gyp rebuild",
"stress": "mocha --no-timeouts test/arduinoTest/stress.js",
"grunt": "grunt",
"test": "grunt --verbose"
},
"gypfile": true
}