forked from eight04/linkify-plus-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
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
{
"name": "linkify-plus-plus",
"description": "Based on Linkify Plus. Turn plain text URLs into links.",
"version": "9.0.2",
"repository": "eight04/linkify-plus-plus",
"license": "BSD-3-Clause",
"devDependencies": {
"dataurl": "^0.1.0",
"eslint": "^5.16.0",
"rollup": "^1.15.6",
"rollup-plugin-cjs-es": "^0.9.0",
"rollup-plugin-iife": "^0.2.0",
"rollup-plugin-inline-js": "^0.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"shx": "^0.3.2",
"sync-version": "^1.0.1",
"userscript-meta-cli": "^0.4.2",
"web-ext": "^3.0.0"
},
"scripts": {
"build": "shx rm -rf extension/js && rollup -c && shx cp node_modules/event-lite/dist/event-lite.min.js extension/js/ && shx cp node_modules/webextension-polyfill/dist/browser-polyfill.min.js extension/js/ && sync-version extension/manifest.json && web-ext build",
"test": "eslint \"**/*.js\" --cache && web-ext lint",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push --follow-tags",
"start": "web-ext run"
},
"eslintIgnore": [
"extension",
"dist"
],
"userscript": {
"name": "Linkify Plus Plus",
"namespace": "eight04.blogspot.com",
"include": "*",
"exclude": [
"https://www.google.*/search*",
"https://www.google.*/webhp*",
"https://music.google.com/*",
"https://mail.google.com/*",
"https://docs.google.com/*",
"https://encrypted.google.com/*",
"http://mxr.mozilla.org/*",
"http://w3c*.github.io/*"
],
"require": [
"https://greasyfork.org/scripts/27630-linkify-plus-plus-core/code/linkify-plus-plus-core.js?version=671353",
"https://greasyfork.org/scripts/371339-gm-webextpref/code/GM_webextPref.js?version=623327"
],
"grant": [
"GM.getValue",
"GM.setValue",
"GM.deleteValue",
"GM_addStyle",
"GM_registerMenuCommand",
"GM_getValue",
"GM_setValue",
"GM_deleteValue",
"GM_addValueChangeListener",
"unsafeWindow"
],
"compatible": [
"firefox Tampermonkey latest",
"chrome Tampermonkey latest"
]
},
"private": true,
"dependencies": {
"event-lite": "^0.1.2",
"linkify-plus-plus-core": "^0.4.1",
"webext-pref": "^0.5.1",
"webextension-polyfill": "^0.4.0"
},
"webExt": {
"sourceDir": "extension",
"build": {
"overwriteDest": true
}
}
}