forked from ianmetcalf/node-ds2482-temperature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@jahartley/ds2482-temperature",
"version": "0.2.1",
"description": "Provides an interface for Dallas DS18B20 temperature sensors over the DS2482 onewire bridge",
"main": "index.js",
"scripts": {
"pretest": "eslint ./",
"test": "mocha 'test/**/*.spec.js'",
"test:watch": "nodemon -w ./ -e js -x 'npm test -- --growl --reporter dot'"
},
"engines": {
"node": ">=4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/jahartley/node-ds2482-temperature.git"
},
"keywords": [
"i2c",
"ds2482",
"ds18b20",
"onewire",
"temperature",
"sensor",
"raspberry",
"pi"
],
"author": "Ian Metcalf",
"license": "MIT",
"bugs": {
"url": "https://github.com/jahartley/node-ds2482-temperature/issues"
},
"homepage": "https://github.com/jahartley/node-ds2482-temperature",
"dependencies": {
"ds2482": "github:jahartley/node-ds2482",
"readable-stream": "^2.2.9"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
}
}