-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 951 Bytes
/
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
{
"name": "macos-touchid",
"version": "1.0.3",
"description": "Native module for working with macOS Local Authentication (eg. TouchID)",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"napi-macros": "^1.8.2",
"node-gyp-build": "^4.1.0"
},
"devDependencies": {
"node-gyp": "^5.0.0",
"prebuildify": "^3.0.0",
"standard": "^12.0.1",
"tape": "^4.10.2"
},
"scripts": {
"pretest": "standard",
"test": "true",
"dev": "node-gyp rebuild",
"clean": "rm -rf build",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --strip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/touchid.git"
},
"keywords": [],
"author": "Emil Bay <github@tixz.dk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/touchid/issues"
},
"homepage": "https://github.com/emilbayes/touchid#readme"
}