-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.41 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
58
59
60
{
"name": "cncjs-pendant-gpio",
"version": "0.2.0",
"author": "Ugly Donkey",
"bin": {
"cncjs-pendant-gpio": "./bin/run"
},
"bugs": "https://github.com/UglyDonkey/cncjs-pendant-gpio/issues",
"dependencies": {
"@oclif/command": "1",
"@oclif/config": "1",
"@oclif/plugin-help": "3",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"onoff": "6.0.3",
"socket.io-client": "2.3.0",
"tslib": "1"
},
"devDependencies": {
"@oclif/dev-cli": "1",
"@types/jsonwebtoken": "8.5.5",
"@types/lodash": "4.14.172",
"@types/node": "10",
"eslint": "5.16",
"eslint-config-oclif": "3.1",
"eslint-config-oclif-typescript": "0.1",
"rimraf": "3.0.2",
"ts-node": "8",
"typescript": "4.4.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/UglyDonkey/cncjs-pendant-gpio",
"keywords": [
"cncjs",
"pendant",
"gpio",
"raspberry",
"pi"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "cncjs-pendant-gpio"
},
"repository": "UglyDonkey/cncjs-pendant-gpio",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rimraf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"description": "Configurable gpio pendant for cncjs"
}