-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "mac-metadata-query",
"version": "0.0.4",
"description": "A native module to search file on Mac with NSMetadataQuery.",
"homepage": "https://github.com/BB-fat/mac-metadata-query",
"bugs": {
"url" : "https://github.com/BB-fat/mac-metadata-query/issues",
"email" : "bbfat3047@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/BB-fat/mac-metadata-query"
},
"main": "index.js",
"keywords": [
"electron",
"MDQuery",
"NSMetadataQuery",
"Spotlight",
"search file",
"mac"
],
"author": "BBfat",
"license": "MIT",
"dependencies": {
"node-addon-api": "^4.0.0",
"node-gyp-build": "^4.2.3"
},
"gypfile": true,
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.0.6",
"prebuildify": "^4.2.0"
},
"os": [
"darwin"
],
"types": "index.d.ts",
"files": [
"src",
"binding.gyp",
"index.js",
"index.d.ts",
"prebuilds"
],
"scripts": {
"test": "jest",
"install": "node-gyp-build",
"prebuildify": "node build.js"
}
}