-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
62
63
{
"name": "raspi-i2c",
"version": "6.2.4",
"description": "Provides access to I2C on the Raspberry Pi from Node.js ",
"main": "dist/index.js",
"types": "./declarations/index.d.ts",
"dependencies": {
"i2c-bus": "^5.1.0",
"ini-builder": "^1.1.1",
"j5-io-types": "^2.5.0",
"raspi-board": "^7.1.0",
"raspi-peripheral": "^3.0.3"
},
"devDependencies": {
"@types/i2c-bus": "^1.0.19",
"@types/node": "^10.12.12",
"@types/raspi-board": "^5.2.0",
"@types/raspi-peripheral": "^2.0.0",
"tslint": "^5.7.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 6.4.0"
},
"cpu": [
"arm",
"arm64"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "echo \"Enabling I2C at boot time, you may be asked for your password\" && sudo env \"PATH=$PATH\" script/enable_i2c.js",
"prebuild": "tslint 'src/**/*.ts'",
"build": "tsc"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "https://github.com/nebrius/raspi-i2c.git"
},
"keywords": [
"nodebots",
"robotics",
"raspberry pi"
],
"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-i2c/issues"
},
"homepage": "https://github.com/nebrius/raspi-i2c"
}