forked from nebrius/raspi-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.29 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "raspi-io",
"version": "9.0.0",
"description": "A Firmata-compatible Raspberry Pi I/O API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nebrius/raspi-io.git"
},
"homepage": "https://github.com/nebrius/raspi-io",
"keywords": [
"raspberrypi",
"nodebots",
"robots"
],
"dependencies": {
"raspi": "^5.0.2",
"raspi-board": "^5.2.0",
"raspi-gpio": "^6.0.0",
"raspi-i2c": "^6.1.2",
"raspi-led": "^2.0.0",
"raspi-pwm": "^6.0.0",
"raspi-serial": "^5.0.0",
"raspi-soft-pwm": "^5.0.0",
"raspi-io-core": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^2.13.1"
},
"engines": {
"node": ">= 6.4.0"
},
"cpu": [
"arm"
],
"scripts": {
"test": "node ./test/bootstrap.js",
"prebuild": "eslint src/**/*.js",
"build": "babel src/index.js --presets es2015 --out-file dist/index.js --source-maps"
},
"author": "Bryan Hughes <[email protected]>",
"contributors": [
{
"name": "Bryan Hughes",
"email": "[email protected]"
},
{
"name": "Brian Cooke",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/raspi-io/issues"
}
}