-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1004 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": "w1temp",
"version": "4.4.1",
"description": "Measure temperature through DS18B20 sensor connected to 1wire to Raspberry PI with node.js",
"main": "dist/index.js",
"typings": "types.d.ts",
"scripts": {
"lint": "eslint src",
"compile": "babel src --out-dir dist",
"prepublish": "npm run lint && npm run compile"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/kolarcz/node-w1temp.git"
},
"keywords": [
"measure",
"temperature",
"ds18b20",
"raspberry",
"1wire"
],
"author": "Petr Kolář <kolarcz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/kolarcz/node-w1temp/issues"
},
"homepage": "/~https://github.com/kolarcz/node-w1temp#readme",
"dependencies": {
"gpio": "^0.2.7"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0"
}
}