-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 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
49
50
51
52
53
54
55
56
57
{
"name": "node-libgpiod",
"version": "0.4.6",
"author": {
"name": "Leonardo Silveira",
"email": "sombriks@gmail.com",
"url": "https://sombriks.com"
},
"keywords": [
"libgpiod",
"node",
"linux",
"raspberrypi",
"raxdarock"
],
"repository": {
"type": "git",
"url": "https://github.com/sombriks/node-libgpiod.git"
},
"bugs": {
"url": "https://github.com/sombriks/node-libgpiod/issues"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"clean": "node-gyp clean",
"configure-gpio-sim": "sh test/prepare-gpio-sim.sh",
"test": "mocha test/*.spec.js test/**/*.spec.js",
"test:coverage": "nyc npm run test",
"lint": "xo --fix"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "10.1.0",
"node-gyp": "^10.0.1",
"nyc": "^15.1.0",
"xo": "^0.58.0"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.11.1"
},
"engines": {
"node": ">=18"
},
"xo": {
"rules": {
"no-new": 0,
"eqeqeq": 0,
"no-undef": 0,
"import/extensions": 0,
"unicorn/prefer-module": 0
}
}
}