forked from codebytere/node-mac-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 908 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
{
"name": "node-mac-permissions",
"version": "1.0.1",
"description": "A native node module to manage system permissions on macOS",
"main": "index.js",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebytere/node-mac-permissions.git"
},
"keywords": [
"permissions",
"macos",
"node",
"native"
],
"author": "Shelley Vohr <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codebytere/node-mac-permissions/issues"
},
"homepage": "https://github.com/codebytere/node-mac-permissions#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"node-gyp": "^6.0.1"
}
}