-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 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
47
48
49
{
"name": "raspi-gpio",
"version": "6.2.2",
"description": "Provides access to GPIO on the Raspberry Pi from Node.js",
"main": "dist/index.js",
"types": "./declarations/index.d.ts",
"dependencies": {
"j5-io-types": "^2.4.0",
"pigpio": "^1.2.1",
"raspi-board": "^7.1.2",
"raspi-peripheral": "^3.0.3"
},
"devDependencies": {
"@types/node": "^10.12.12",
"@types/pigpio": "^1.2.0",
"@types/raspi-board": "^5.0.0",
"@types/raspi-peripheral": "^2.0.0",
"tslint": "^5.9.1",
"typescript": "^3.1.6"
},
"engines": {
"node": ">= 6.4.0"
},
"cpu": [
"arm",
"arm64"
],
"scripts": {
"prebuild": "tslint 'src/**/*.ts'",
"preinstall": "sh ./script/pigpio.sh",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/nebrius/raspi-gpio.git"
},
"keywords": [
"nodebots",
"robotics",
"raspberry pi"
],
"author": "Bryan Hughes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/raspi-gpio/issues"
},
"homepage": "https://github.com/nebrius/raspi-gpio"
}