-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "uareu-node",
"version": "1.0.5",
"description": "A nodejs library to communicate with DigitalPersona 4500 biometric.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start:dev": "ts-node src/index.ts",
"test": "jest --config jest.config.js",
"build": "tsc",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfelipecdm/uareu-node.git"
},
"keywords": [
"uareu",
"biometric",
"digitalpersona",
"fingerprint",
"uareu 4500"
],
"author": "Lucas Felipe Costa da Mata",
"license": "ISC",
"devDependencies": {
"@microsoft/tsdoc": "^0.12.20",
"@types/jest": "^25.2.1",
"@types/ref-struct-di": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"typedoc": "^0.17.7",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/ffi-napi": "^4.0.4",
"@types/ref-napi": "^3.0.4",
"ffi-napi": "^4.0.3",
"ref-array-di": "^1.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1"
}
}