-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.72 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
{
"name": "link-extractor",
"scripts": {
"postinstall": "npx gulp",
"lint:eslint": "npx eslint src/js tests",
"lint:web-ext": "npm run manifest:firefox && npx web-ext lint --source-dir ./src/ --ignore-files dist/**",
"lint": "npm run lint:eslint && npm run lint:web-ext",
"test": "npm run manifest:test && node tests/test.js",
"issue": "npm run manifest:test && node tests/issue.js",
"chrome": "npm run manifest:chrome && web-ext run --source-dir ./src/ --target=chromium",
"firefox": "npm run manifest:firefox && web-ext run --source-dir ./src/",
"manifest:chrome": "npx json-merger -p -am concat -o src/manifest.json manifest.json manifest-chrome.json",
"manifest:firefox": "npx json-merger -p -am concat -o src/manifest.json manifest.json manifest-firefox.json",
"manifest:test": "npx json-merger -p -am concat -o src/manifest.json manifest.json tests/manifest-test.json",
"build:chrome": "npm run manifest:chrome && npx web-ext build -n {name}-chrome-{version}.zip -o -s src",
"build:firefox": "npm run manifest:firefox && npx web-ext build -n {name}-firefox-{version}.zip -o -s src",
"build": "npm run build:chrome && npm run build:firefox"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"bootstrap": "^5.3.3",
"clipboard": "^2.0.11",
"datatables.net": "^2.1.5",
"datatables.net-bs5": "^2.1.8",
"datatables.net-buttons": "^3.1.2",
"datatables.net-buttons-bs5": "^3.1.2",
"jquery": "^3.7.1",
"pdfjs-dist": "^4.7.76"
},
"devDependencies": {
"@types/chrome": "^0.0.278",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"json-merger": "^1.1.10",
"prettier": "^3.3.3",
"puppeteer": "^22.15.0",
"web-ext": "^8.3.0"
}
}