-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "@automaid/gpio-service",
"version": "1.0.0",
"description": "Expose GPIO Ports as a HTTP Service and call remote Services on gpio interrupt",
"main": "src/index.js",
"bin": "bin/gpio-service",
"scripts": {
"start": "bin/gpio-service",
"lint": "eslint bin/** src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/automaid/generic-gpio-service.git"
},
"author": "Max Jöhnk <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/automaid/generic-gpio-service/issues"
},
"homepage": "https://github.com/automaid/generic-gpio-service#readme",
"dependencies": {
"@automaid/url-executor": "^1.0.0",
"bunyan": "^1.8.10",
"bunyan-format": "^0.2.1",
"js-yaml": "^3.9.0",
"lodash.debounce": "^4.0.8",
"restify": "^6.3.2",
"tinycolor2": "^1.4.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"eslint": "^4.3.0"
},
"peerDependencies": {
"wiring-pi": "^2.2.1"
}
}