-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1015 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
{
"name": "raspi-rotary-encoder",
"version": "0.4.0",
"description": "Provides reading of a Rotary Encoder connected to the Raspberry Pi's GPIO pins",
"main": "lib/index.js",
"dependencies": {
"onoff": "^1.1.7",
"raspi-board": "^5.0.1",
"raspi-gpio": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "eslint index.js",
"build": "babel index.js --presets es2015 --out-file lib/index.js --source-maps inline"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewn/raspi-rotary-encoder.git"
},
"keywords": [
"nodebots",
"robotics",
"raspberry pi"
],
"author": "Andrew Nicolaou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewn/raspi-rotary-encoder/issues"
},
"homepage": "https://github.com/andrewn/raspi-rotary-encoder"
}