-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
{
"name": "node-mac-contacts",
"version": "1.4.0",
"description": "A native module that allows you to access and manipulate macOS contacts",
"main": "index.js",
"scripts": {
"install": "prebuild-install || npm run build",
"build": "node-gyp build",
"build:dev": "node-gyp build --debug",
"clean": "node-gyp clean",
"lint": "prettier --check '**/*.js'",
"format": "clang-format -i contacts.mm && prettier --write '**/*.js'",
"rebuild": "node-gyp rebuild",
"rebuild:dev": "node-gyp rebuild --debug",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebytere/node-mac-contacts.git"
},
"keywords": [
"contacts",
"macos",
"node",
"electron",
"native"
],
"author": "Shelley Vohr <shelley.vohr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codebytere/node-mac-contacts/issues"
},
"homepage": "https://github.com/codebytere/node-mac-contacts#readme",
"devDependencies": {
"chai": "^4.2.0",
"clang-format": "^1.4.0",
"husky": "^4.3.0",
"is-ci": "^2.0.0",
"lint-staged": "^10.5.3",
"mocha": "^9.2.1",
"node-gyp": "^7.1.2",
"prettier": "^2.2.1"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
},
"os": [
"darwin"
]
}