-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.76 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
{
"name": "open-wiki-edit-page",
"author": "Brett Zamir",
"contributors": [],
"version": "0.11.0",
"license": "MIT",
"homepage": "https://github.com/brettz9/open-wiki-edit-page",
"dependencies": {},
"devDependencies": {
"@brettz9/eslint-plugin": "^1.0.4",
"convert-manifest-format": "^0.3.1",
"eslint": "^8.37.0",
"eslint-config-ash-nazg": "34.9.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-array-func": "^3.1.8",
"eslint-plugin-compat": "^4.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^46.0.0",
"jamilih": "^0.54.0",
"webextension-polyfill": "^0.10.0"
},
"scripts": {
"chrome": "convert-manifest-format --chrome && npm run webext-build",
"firefox": "convert-manifest-format --firefox && npm run webext-build",
"webext-lint": "web-ext lint",
"webext-path": "npm run eslint && web-ext run --browser-console -f /Applications/Firefox.app",
"webext": "npm run eslint && web-ext run --browser-console -f firefox",
"webext-default": "npm run eslint && web-ext run --browser-console",
"webext-beta": "npm run eslint && web-ext run --browser-console -f beta",
"webext-nightly": "npm run eslint && web-ext run --browser-console -f nightly",
"webext-dev": "npm run eslint && web-ext run --browser-console -f firefoxdeveloperedition",
"webext-build": "npm run eslint && web-ext build --overwrite-dest",
"eslint": "eslint --ext=js,md,html .",
"lint": "npm run eslint",
"copy-polyfill": "cp node_modules/webextension-polyfill/dist/browser-polyfill.min.js polyfills/browser-polyfill.min.js",
"copy": "npm run copy-polyfill && cp node_modules/jamilih/dist/jml-es-noinnerh.js options/jml.js"
},
"engines": {},
"repository": {
"type": "git",
"url": "https://github.com/brettz9/open-wiki-edit-page.git"
},
"bugs": "https://github.com/brettz9/open-wiki-edit-page/issues",
"keywords": [
"wiki"
],
"description": "Context menu item to translate Mediawiki-style links (as used at Wikipedia) into corresponding edit links (i.e., from /wiki/title or title(title) links into ?actionedit&title(title) links.\n\nThere are also Open ISBN at Amazon links for right-clicking Special:BookSources/ISBN links. These links will allow a direct visit to the Amazon.com search result page for that ISBN (e.g., when an interesting book is found on Wikipedia)."
}