-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "ts-ssp",
"version": "0.1.6",
"description": "NodeJS library to work with coin and bill acceptors under SSP protocol. Written in Typescript.",
"main": "src/index.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"prepack": "npm run build:clean",
"watch": "tsc -w",
"lint": "npm run lint:tsc && npm run lint:tslint",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"lint:tslint": "tslint -c tslint.json -p tsconfig.json --fix",
"lint:prettier": "prettier --write \"{src,__tests__}/**/*.ts*\"",
"commit": "commit-prompt --no-verify",
"precommit": "lint-staged",
"test": "jest --detectOpenHandles",
"test:unit": "jest --detectOpenHandles --testPathPattern \"src/.+spec.tsx?$\"",
"test:e2e": "jest --detectOpenHandles --testPathPattern \"__tests__/.+.tsx?\"",
"test:ci": "jest --detectOpenHandles --coverage",
"clean": "rimraf '{src,__tests__}/**/*.js?(x)?(.map)'",
"release": "./extra/deployment/release.sh",
"postrelease": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goooseman/ts-ssp.git"
},
"keywords": [
"Smiley Secure Protocol",
"Innovative Technologies",
"SSP",
"NV10",
"NV9",
"NV10Plus",
"NV10+",
"serialport",
"cash acceptor"
],
"author": "goooseman",
"license": "MIT",
"bugs": {
"url": "https://github.com/goooseman/ts-ssp/issues"
},
"homepage": "https://github.com/goooseman/ts-ssp",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^10.17.21",
"jest": "^24.0.0",
"prettier-config-trucknet-io": "^2.1.0",
"rimraf": "^3.0.2",
"trucknet-commit": "^1.5.5",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.1",
"tslint": "^5.20.1",
"tslint-config-trucknet-io": "^1.8.7",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/serialport": "^8.0.0",
"serialport": "^8.0.0"
}
}