-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "wiegand-encoder",
"version": "1.1.2",
"description": "Encode and decode 26, 34, or 38 bit Wiegand protocol credentials",
"keywords": [
"wiegand",
"protocol",
"parity",
"access control"
],
"homepage": "https://github.com/jessety/wiegand-encoder#readme",
"bugs": {
"url": "https://github.com/jessety/wiegand-encoder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessety/wiegand-encoder.git"
},
"license": "MIT",
"author": "Jesse Youngblood <[email protected]> (https://jesseyoungblood.com)",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@jessety/eslint-config": "^1.0.5",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"auto-changelog": "^2.2.0",
"eslint": "^7.7.0",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
}
}