-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "oled-js",
"version": "5.1.2",
"description": "johnny-five compatible lib for oled devices",
"main": "build/oled.js",
"types": "build/oled.d.ts",
"files": [
"build/oled.js",
"build/oled.d.ts"
],
"devDependencies": {
"@types/node": "^13.5.0",
"johnny-five": "^1.4.0",
"oled-font-5x7": "~1.0.0",
"png-to-lcd": "~1.0.3",
"pngparse": "~2.0.1",
"standard": "^12.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"temporal": "^0.5.0",
"testdouble": "^3.1.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/johnny-five": "*",
"serialport": "8"
},
"scripts": {
"build": "tsc -b",
"test": "node tests/unit/oledjs.spec.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/noopkat/oled-js.git"
},
"keywords": [
"johnny-five",
"oled",
"firmata"
],
"author": "Suz Hinton",
"license": "MIT",
"bugs": {
"url": "https://github.com/noopkat/oled-js/issues"
},
"homepage": "https://github.com/noopkat/oled-js"
}