-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "protocol-registry",
"version": "1.4.1",
"description": "This module allows you to set custom protocol handler for your nodejs app.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"devStart": "nodemon src/index.js",
"start": "node src/index.js",
"format": "eslint . --fix",
"postinstall": "node src/postinstall.js"
},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Shubham-Kumar-2000/protocol-registry.git"
},
"keywords": [
"protocol",
"registry",
"module://",
"app://",
"uri-scheme",
"nodejs",
"protocol-registry",
"register a custom protocol nodejs"
],
"author": "Shubham Kumar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shubham-Kumar-2000/protocol-registry/issues"
},
"homepage": "https://github.com/Shubham-Kumar-2000/protocol-registry#readme",
"dependencies": {
"ejs": "^3.1.8",
"is-wsl": "^2.2.0",
"joi": "^17.9.1",
"plist": "^3.1.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^2.0.13",
"prettier": "2.2.1",
"husky": "^6.0.0"
}
}