-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 854 Bytes
/
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
{
"name": "ds18x20",
"description": "A node.JS implementation for using the DS1820, DS18S20 and/or DS18B20 temperature sensor with Raspberry Pi.",
"version": "0.2.0",
"main": "index",
"author": "Marcus Bergman <[email protected]>",
"scripts": {
"test": "node_modules/.bin/tap ./test"
},
"keywords": [
"raspberry pi",
"sensor",
"temperature",
"thermometer",
"ds1820",
"ds18s20",
"ds18b20",
"ds18x20",
"raspberry",
"pi"
],
"dependencies": {
"async": "~0.2.9",
"sandal": "~1.0.1",
"sync-exec": "~0.5"
},
"devDependencies": {
"tap": "~0.4.6",
"interpreted": "~0.4.0"
},
"license": {
"type": "MIT",
"url": "https://github.com/mraxus/ds18x20.js/raw/master/LICENSE"
},
"repository": "git://github.com/mraxus/ds18x20.js",
"engines": {
"node": "*"
}
}