-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "electron-open-link-in-browser",
"description": "Open a link in browser for Electron and browser.",
"version": "1.0.2",
"author": {
"name": "sanemat",
"email": "[email protected]",
"url": "sane.jp"
},
"dependencies": {
"is-electron-renderer": "^2.0.0"
},
"devDependencies": {
"browserify": "^11.1.0",
"conventional-changelog": "^0.4.2",
"dereserve": "^0.1.1",
"eclint": "^1.1.1",
"eslint": "^1.3.0",
"fixpack": "^2.2.0",
"globstar": "^1.0.0",
"npm-check-updates": "^2.2.0",
"touch": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"build"
],
"keywords": [
"atomshell",
"browser",
"electron"
],
"license": "MIT",
"repository": "lyrictenor/electron-open-link-in-browser",
"scripts": {
"build:browser": "npm update && npm prune && npm dedupe && browserify -u shell --standalone electronOpenLinkInBrowser ./index.js | dereserve > build/electron-open-link-in-browser.js",
"changelog": "touch changelog.md && conventional-changelog -i changelog.md --overwrite --preset angular",
"eclint": "globstar --ignore \"{node_modules,build}/**\" -- eclint check \"*.{js,yml,md,json}\"",
"eslint": "eslint index.js",
"fixpack": "fixpack",
"git:tag": "git tag v${npm_package_version}",
"lint": "npm run eclint && npm run eslint",
"ncu": "ncu -u",
"verify": "npm run lint"
}
}