forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "serialport",
"version": "1.4.5",
"description": "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/{module_name}/v{version}/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path" : "./{module_name}/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host" : "https://node-serialport.s3.amazonaws.com"
},
"main": "./serialport",
"repository": {
"type": "git",
"url": "git://github.com/voodootikigod/node-serialport.git"
},
"maintainers": [
{
"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": {
"node-pre-gyp": "0.5.x",
"bindings": "1.2.1",
"async": "0.9.0",
"sf": "0.1.7",
"optimist": "~0.6.1",
"nan": "~1.3.0"
},
"bundledDependencies":["node-pre-gyp"],
"devDependencies": {
"mocha": "*",
"chai": "*",
"sinon-chai": "*",
"sinon": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-mocha-test": "*",
"grunt-contrib-jshint": "*",
"sandboxed-module": "~0.3.0"
},
"engines": {
"node": ">= 0.8.0"
},
"bin": {
"serialportlist": "./bin/serialportList.js",
"serialportterm": "./bin/serialportTerminal.js"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "grunt --verbose"
}
}