-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.28 KB
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": "node-mac-auth",
"version": "1.1.0",
"description": "Query and handle native macOS biometric authentication.",
"main": "index.js",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"lint": "clang-format --dry-run -Werror auth.mm && prettier --check index.js",
"format": "clang-format -i auth.mm && prettier --write index.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebytere/node-mac-auth.git"
},
"keywords": [
"auth",
"touchid",
"mac",
"electron",
"nodejs"
],
"author": "Shelley Vohr (@codebytere)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codebytere/node-mac-auth/issues"
},
"homepage": "https://github.com/codebytere/node-mac-auth#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"clang-format": "^1.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.3.0",
"node-gyp": "^10.0.1",
"prettier": "^3.3.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
},
"os": [
"darwin"
]
}