forked from YaroslavSl/llrp-ts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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": "@dominicvonk/llrp-ts",
"version": "1.1.13",
"description": "UHF Tag reader for connecting with RFID reader through LLRP. (LLRP UHF RFID Driver)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lintify": "eslint .",
"prettify": "prettier --write .",
"copy:assets": "echo copyfiles --verbose --error ./src/**/*.{json,png,jpg,svg,xls,xlsx} ./dist/",
"build": "npm run prettify && tsc && npm run copy:assets",
"test": "jest --coverage --forceExit --detectOpenHandles",
"test:watch": "jest --config jest.config.js --watch --detectOpenHandles",
"prepublishOnly": "npm test && npm run lintify && npm run build",
"preversion": "npm run lintify",
"version": "npm run prettify",
"start": "node dist/examples/example.js",
"start:dev": "nodemon"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dominicvonk/llrp-ts.git"
},
"dependencies": {
"jest": "^26.6.3",
"lodash": "^4.17.20",
"node-int64": "0.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@types/node-int64": "^0.4.29",
"copyfiles": "^2.4.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.15.1"
},
"keywords": [
"llrp",
"llrp-typescript",
"reader",
"rfid",
"rfid-reader",
"uhf",
"uhf-rfid-reader",
"impinj",
"speedway",
"r420",
"tag",
"tag-reader"
],
"author": "Yaroslav Slipchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/dominicvonk/llrp-ts/issues"
},
"homepage": "https://github.com/dominicvonk/llrp-ts#readme"
}