-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 967 Bytes
/
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
{
"name": "transbank-pos-sdk",
"version": "4.0.0",
"description": "SDK Web para POS Integrado en Node.js",
"main": "dist/transbank.js",
"scripts": {
"prepublish": "npm run build",
"dev": "node ./examples/index.js --watch",
"build": "webpack",
"start": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"POS",
"transbank",
"serial"
],
"author": {
"name": "Transbank Developers",
"email": "[email protected]"
},
"contributors": [
{ "name": "Gonzalo De Spírito" }
],
"license": "BSD-3-Clause",
"dependencies": {
"@serialport/parser-inter-byte-timeout": "^12.0.0",
"@babel/runtime": "^7.25.7",
"lrc-calculator": "^0.1.1",
"serialport": "^12.0.0"
},
"devDependencies": {
"inquirer": "^12.2.0",
"jest": "^29.7.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}