-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "thermalprinter",
"version": "0.3.10",
"description": "Use node.js to communicate with Adafruit/Sparkfun Thermal Printer",
"repository": {
"type": "git",
"url": "git://github.com/xseignard/thermalPrinter.git"
},
"main": "src/printer.js",
"files": [
"src/"
],
"author": "Xavier Seignard <[email protected]>",
"contributors": [
{
"name": "Flurin Egger",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha -R spec test/**/*.test.js",
"test:watch": "npm run test -- -w",
"lint": "jshint src test demo",
"coverage": "istanbul cover --dir ./reports _mocha -- -R spec test/**/*.test.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=81648f70a46f19c1b4d5c9cf7f53fa40969af62284554621c22d7d038d2c637e codeclimate-test-reporter < reports/lcov.info",
"clean": "rimraf reports",
"ci": "npm run clean && npm run lint && npm run test && npm run coverage && npm run codeclimate"
},
"keywords": [
"adafruit",
"printer",
"thermal",
"serialport"
],
"license": "MIT",
"homepage": "https://github.com/xseignard/thermalPrinter",
"bugs": {
"url": "https://github.com/xseignard/thermalPrinter/issues"
},
"dependencies": {
"async": "^1.5.0",
"deasync": "^0.1.3",
"get-pixels": "^3.2.3"
},
"devDependencies": {
"chai": "latest",
"codeclimate-test-reporter": "latest",
"istanbul": "latest",
"jshint": "latest",
"mocha": "latest",
"rimraf": "latest",
"serialport": "latest"
}
}