-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 878 Bytes
/
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
{
"name": "spi-device",
"version": "3.1.2",
"description": "SPI serial bus access with Node.js",
"main": "spi-device.js",
"types": "spi-device.d.ts",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"lint": "jshint spi-device.js example/*.js test/*.js test/*/*.js",
"test": "cd test && ./run-tests && cd ..",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/fivdi/spi-device.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.2"
},
"devDependencies": {
"jshint": "^2.12.0",
"@types/node": "^15.0.1"
},
"keywords": [
"spi",
"iot",
"raspberry",
"raspi",
"rpi",
"pi",
"beaglebone",
"linux"
],
"author": "fivdi",
"license": "MIT",
"gypfile": true
}