This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
74 lines (74 loc) · 1.47 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
{
"name": "devicestack",
"version": "1.10.11",
"description": "This module helps you to represent a device and its protocol.",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.8.x",
"npm": ">=1.1.x"
},
"directories": {
"lib": "./lib",
"util": "./util"
},
"dependencies": {
"async": "=1.0.0",
"debug": "=2.2.0",
"eventemitter2": "=0.4.14",
"lodash": "=3.9.3",
"node-uuid": "=1.4.3",
"tv4": "=1.1.9"
},
"optionalDependencies": {
"serialport": "=1.7.1",
"ftdi": "=1.1.0",
"usb-detection": "=1.1.0",
"pm-notify": "=1.0.2"
},
"devDependencies": {
"mocha": ">=1.0.1",
"expect.js": ">=0.1.2",
"istanbul": ">=0.1.44"
},
"scripts": {
"test": "mocha",
"cov": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:adrai/devicestack.git"
},
"keywords": [
"device",
"devicestack",
"stack",
"connection",
"communication",
"serialport",
"usb",
"framehandler",
"protocol",
"framing",
"batchprocessing",
"frame",
"batch",
"command",
"task"
],
"author": "adrai",
"maintainers": [
{
"name": "adrai",
"email": "[email protected]"
}
],
"homepage": "https://github.com/adrai/devicestack",
"bugs": {
"url": "https://github.com/adrai/devicestack/issues"
},
"license": {
"type": "MIT",
"url": "https://raw.github.com/adrai/devicestack/master/licence"
}
}