-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "godex-printer",
"version": "1.2.0",
"description": "Node module for sending commands to GoDex label printers.",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"example": "node_modules/.bin/babel-node example/basic-example.js ",
"example_svg": "node_modules/.bin/babel-node example/svg-example.js ",
"prebuild": "rimraf lib",
"build": "node_modules/.bin/babel src -d lib "
},
"repository": {
"type": "git",
"url": "https://github.com/prashanta/godex-printer.git"
},
"keywords": [
"GoDex",
"printer",
"barcode",
"label",
"svg"
],
"author": "Prashanta Shrestha <pmshrestha@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"core-js": "^3.26.1",
"moment": "^2.29.4",
"serialport": "^10.5.0",
"underscore": "^1.13.6",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"chai": "^4.3.7",
"mocha": "^8.4.0",
"sinon": "^15.0.0"
}
}