-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
{
"name": "@thingssdk/ht16k33",
"version": "1.0.1",
"description": "ES6 compatible display driver for Adafruit HT16K33 matrices, 7 segment and 14 segment displays.",
"main": "main.js",
"scripts": {
"test": "nyc mocha test/*.js",
"test:coverage": "npm test && nyc report --reporter=lcov",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/thingsSDK/ht16k33.git"
},
"keywords": [
"HT16K33",
"thingssdk",
"adafruit",
"espruino",
"led",
"matrix",
"backpack",
"8x8",
"16x8",
"seven",
"fourteen",
"alphanumeric",
"segment",
"display"
],
"author": "Andrew Chalkley <andrew@chalkley.org>",
"contributors": [
"Andrew Chalkley <andrew@chalkley.org> (http://forefront.io)",
"Patrick Dehn <pedesen@googlemail.com> (http://blog.pedesen.de)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thingsSDK/ht16k33/issues"
},
"homepage": "https://github.com/thingsSDK/ht16k33#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"mocha": "^3.2.0",
"nyc": "^11.0.2"
},
"nyc": {
"include": ["*.js"],
"exclude": ["espruino.js"],
"require": ["babel-core/register"]
}
}