-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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": "escpos-xml",
"version": "1.0.0",
"description": "ESC/POS with XML interface",
"homepage": "https://github.com/ingoncalves/escpos-xml#README",
"author": "Guilherme Inácio Gonçalves",
"license": "Apache-2.0",
"main": "index.js",
"types": "lib/index",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "npm run lint && npm run webpack:build",
"watch": "npm run webpack:watch",
"webpack:build": "webpack --config webpack.config.js",
"webpack:watch": "webpack --config webpack.config.js --watch",
"lint": "tslint --format codeFrame --type-check --project tslint.json lib/**/*.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingoncalves/escpos-xml.git"
},
"keywords": [
"escpos",
"esc",
"pos",
"xml",
"printer"
],
"bugs": {
"url": "https://github.com/ingoncalves/escpos-xml/issues"
},
"dependencies": {
"handlebars": "^4.0.10",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mutable-buffer": "2.0.3",
"numeral": "^2.0.6",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"@types/lodash": "^4.14.74",
"@types/numeral": "0.0.22",
"@types/xml-parser": "^1.2.29",
"ts-loader": "^2.3.4",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.2",
"webpack": "^3.5.5"
}
}