forked from crycode-de/node-pcf8574
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "pcf8574",
"version": "2.0.1",
"description": "Control each pin of a PCF8574/PCF8574A I2C port expander IC.",
"keywords": [
"pcf8574",
"pcf8574a",
"pcf8574p",
"i2c",
"portexpander",
"raspberry pi",
"gpio"
],
"main": "dist/pcf8574.js",
"typings": "dist/pcf8574.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"lint": "eslint --ext .ts src examples",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=10.0.0"
},
"author": "Peter Müller <[email protected]> (https://crycode.de)",
"license": "GPL-2.0",
"homepage": "https://crycode.de/node-js-modul-pcf8574",
"repository": {
"type": "git",
"url": "https://github.com/crycode-de/node-pcf8574.git"
},
"bugs": {
"url": "https://github.com/crycode-de/node-pcf8574/issues"
},
"devDependencies": {
"@types/i2c-bus": "^5.1.0",
"@types/node": "^14.14.10",
"@types/onoff": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"typescript": "^4.1.2"
},
"dependencies": {
"i2c-bus": "^5.2.1",
"onoff": "^6.0.1"
}
}