-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@kybarg/ssp",
"version": "0.0.0-development",
"description": "Node.JS library Encrypted Smiley ® Secure Protocol (eSSP, SSP)",
"license": "MIT",
"author": {
"name": "Ruslan Kyba",
"email": "[email protected]"
},
"contributors": [
{
"name": "Roman Skokov",
"url": "https://github.com/skokov3812"
}
],
"homepage": "https://github.com/kybarg/ssp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kybarg/ssp.git"
},
"bugs": {
"url": "https://github.com/kybarg/ssp/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib example.js",
"prettier": "npx prettier --write \"**/*.{ts,tsx,js,md,mdx,css,yaml}\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"docs": "node scripts/docs.js"
},
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.4",
"semver": "^7.6.2",
"serialport": "^12.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-syntax-import-assertions": "^7.24.1",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0"
},
"keywords": [
"bv100",
"bv20",
"bv50",
"encrypted-smiley-secure-protocol",
"encrypted",
"essp",
"itl",
"nv10usb",
"nv11",
"nv200",
"nv22",
"nv9",
"nv9usb",
"protocol",
"secure",
"smart-hopper",
"smart-payout",
"smiley-secure-protocol",
"smiley",
"ssp"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}