forked from glawson/electron-deeplink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "electron-deeplink",
"version": "0.0.0-development",
"description": "Node module for Electron apps that sets the default handler for a given protocol (deeplinks) in both development and production environments.",
"keywords": [
"electron",
"deeplink",
"protocol",
"win32",
"macos"
],
"main": "./dist/index.js",
"files": [
"/dist",
"/src",
"binding.gyp",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc & node-gyp rebuild",
"clean": "rm -rf ./dist & node-gyp clean",
"format": "clang-format -i ./src/electron-deeplink.mm",
"test": "nyc mocha -r ts-node/register ./tests/**/*.spec.ts",
"semantic-release": "semantic-release"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bindings": "^1.5.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@types/sinon": "^10.0.4",
"chai": "^4.2.0",
"clang-format": "^1.4.0",
"mocha": "^8.1.1",
"node-gyp": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/electron": "^1.6.10",
"bindings": "^1.5.0",
"electron-log": "^4.2.3",
"node-addon-api": "^4.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/glawson/electron-deeplink.git"
},
"release": {
"branches": [
"master"
]
}
}