-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
61 lines (61 loc) · 1.28 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
59
60
61
{
"name": "raspi-io",
"version": "11.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": {
"clone": "^2.1.2",
"j5-io": "^3.1.0",
"j5-io-types": "^2.4.0",
"raspi": "^6.0.1",
"raspi-board": "^7.1.2",
"raspi-gpio": "^6.2.1",
"raspi-i2c": "^6.2.2",
"raspi-led": "^2.1.1",
"raspi-serial": "^6.0.0",
"raspi-soft-pwm": "^6.0.1"
},
"devDependencies": {
"@types/clone": "^0.1.30",
"@types/node": "^10.14.9",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"engines": {
"node": ">= 10.13.0"
},
"cpu": [
"arm",
"arm64"
],
"scripts": {
"test": "node ./test/bootstrap.js",
"prebuild": "tslint src/**/*.ts",
"build": "tsc"
},
"author": "Bryan Hughes <bryan@nebri.us>",
"contributors": [
{
"name": "Bryan Hughes",
"email": "bryan@nebri.us"
},
{
"name": "Brian Cooke",
"email": "bdscooke@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/raspi-io/issues"
}
}