-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
56 lines (56 loc) · 1.36 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
56
{
"name": "node-mac-permissions",
"version": "2.4.0",
"description": "A native node module to manage system permissions on macOS",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"lint": "clang-format --dry-run -Werror permissions.mm && prettier --check index.js",
"format": "clang-format -i permissions.mm && prettier --write index.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebytere/node-mac-permissions.git"
},
"keywords": [
"permissions",
"macos",
"node",
"napi",
"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": "^7.1.0"
},
"devDependencies": {
"chai": "^4.3.6",
"clang-format": "1.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"node-gyp": "^10.0.1",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
},
"os": [
"darwin"
]
}