forked from YaroslavSl/llrp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "llrp-ts",
"version": "1.0.0",
"description": "UHF Tag reader for connecting with RFID reader through LLRP. (LLRP UHF RFID Driver)",
"main": "./dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "./node_modules/.bin/rimraf dist/ && ./node_modules/.bin/tsc",
"start": "node ./dist/example.js",
"tslint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json --fix",
"test": "./node_modules/.bin/jest --coverage --forceExit --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/YaroslavSl/llrp-ts.git"
},
"dependencies": {
"@types/node-int64": "^0.4.29",
"lodash": "^4.17.11",
"node-int64": "^0.4.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.12.1",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.4000"
},
"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/YaroslavSl/llrp-ts/issues"
},
"homepage": "https://github.com/YaroslavSl/llrp-ts#readme"
}