-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 953 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 953 Bytes
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
{
"name": "noolite",
"version": "3.0.1",
"description": "node.js driver for noolite devices",
"main": "index.js",
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afoninsky/noolite.git"
},
"keywords": [
"iot",
"noolite",
"uart",
"hid",
"serial",
"mt1132",
"pc118",
"pc1116",
"pc1132",
"rx2164",
"pt111",
"pt112"
],
"author": "Andrey 'vkfont' Afoninsky",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/afoninsky/noolite/issues"
},
"homepage": "https://github.com/afoninsky/noolite#readme",
"dependencies": {
"bluebird": "^3.4.7",
"node-hid": "^0.5.1",
"serialport": "^4.0.7"
},
"devDependencies": {
"ava": "^0.18.2",
"ava-spec": "^1.1.0",
"babel-register": "^6.23.0",
"eslint": "^3.15.0"
},
"ava": {
"verbose": true,
"source": [
"**/*js"
]
}
}