forked from clobberos/xpc-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.99 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
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
83
84
85
86
87
88
{
"name": "xpc-connect",
"version": "0.0.0-semantically-released",
"description": "XPC Connection binding for node.js",
"main": "index.js",
"gypfile": true,
"files": [
"binding.gyp",
"build",
"src",
"README.md"
],
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf build",
"build": "node-gyp rebuild",
"lint": "eslint .",
"start": "node index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"report-coverage": "npm run test:coverage && cat ./coverage/lcov.info | codecov",
"validate": "npm run test:coverage"
},
"jest": {
"testURL": "http://localhost",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run validate",
"prepare-commit-msg": "exec < /dev/tty && ./node_modules/.bin/git-cz --hook"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jongear/xpc-connect.git"
},
"bugs": {
"url": "https://github.com/jongear/xpc-connect/issues"
},
"keywords": [
"XPC",
"XPC connect"
],
"author": "Sandeep Misty <[email protected]>",
"maintainers": [
{
"name": "Jon Gear",
"email": "[email protected]",
"url": "https://gear.dev"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=8.0"
},
"os": [
"darwin"
],
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"node-gyp": "^3.8.0"
},
"devDependencies": {
"codecov": "^3.6.1",
"commitizen": "^3.1.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.1",
"ghooks": "^2.0.4",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^2.7.1",
"semantic-release": "^15.13.24"
}
}