This repository was archived by the owner on Oct 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "Wire Swiss <wireapp@wire.com>",
"dependencies": {
"nan": "2.14.1"
},
"description": "OSX addressbook access for node",
"devDependencies": {
"@types/node": "~12",
"@types/progress": "2.0.3",
"@wireapp/prettier-config": "0.3.0",
"@wireapp/tslint-config": "1.4.1",
"clang-format": "1.4.0",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"progress": "2.0.3",
"rimraf": "3.0.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"tslint-react": "4.2.0",
"tslint-react-hooks": "2.2.2",
"typescript": "3.8.3"
},
"engines": {
"node": ">= 10"
},
"files": [
"binding.gyp",
"src/cpp",
"dist"
],
"gypfile": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"address",
"addressbook",
"contacts",
"binding"
],
"license": "GPL-3.0",
"lint-staged": {
"*.ts": [
"tslint --project tsconfig.json --fix"
],
"*.{h,cc}": [
"clang-format -i"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"main": "dist/index.js",
"name": "@wireapp/node-addressbook",
"os": [
"darwin"
],
"prettier": "@wireapp/prettier-config",
"repository": "https://github.com/wireapp/node-addressbook.git",
"scripts": {
"build": "yarn build:ts && yarn build:gyp",
"build:gyp": "node-gyp rebuild",
"build:ts": "tsc",
"clear": "rimraf build dist",
"dist": "yarn clear && yarn build",
"fix": "yarn fix:other && yarn fix:cpp && yarn fix:ts",
"fix:cpp": "clang-format -i --glob=\"src/cpp/*.{h,cc}\"",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"lint": "yarn lint:other && yarn lint:cpp && yarn lint:ts",
"lint:cpp": "check-clang-format",
"lint:other": "yarn prettier --list-different",
"lint:ts": "tslint --project tsconfig.json",
"prettier": "prettier \"**/*.{json,md,yml}\"",
"test": "yarn lint && yarn dist"
},
"version": "3.3.1"
}