-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "i2c-io-expanders",
"version": "1.0.1",
"description": "Various I2C IO expanders modeled after and including PCF8574 module created by Peter Müller <peter@crycode.de> (https://crycode.de/)",
"keywords": [
"pcf8575",
"pcf8574",
"cat9555",
"mcp23017",
"mcp23008",
"i2c",
"portexpander",
"raspberry pi",
"gpio"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"lint": "eslint --ext .ts src examples/pcf8574 examples/pcf8575 examples/mcp23017 examples/mcp23008 examples/cat9555",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=10.0.0"
},
"author": "Lyndel McGee <lynniemagoo@yahoo.com>",
"contributors": [
"Peter Müller <peter@crycode.de> (https://crycode.de)"
],
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lynniemagoo/node-i2c-io-expanders.git"
},
"bugs": {
"url": "https://github.com/lynniemagoo/node-i2c-io-expanders/issues"
},
"devDependencies": {
"@types/i2c-bus": "^5.1.0",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"i2c-bus": "^5.2.3",
"onoff": "^6.0.3"
}
}