-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"name": "tabs_to_markdown_extension",
"version": "1.0.0",
"description": "Generate a list with links to all open tabs in Markdown",
"main": "index.js",
"repository": "https://github.com/carlesandres/tabs_to_markdown_extension",
"author": "Carles Andres <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "npm-run-all -p watch web-ext:chrome",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"zip": "zip -r zipped.zip distribution/",
"web-ext:chrome": "web-ext run --target chromium --source-dir ./distribution/",
"release": "webstore upload --source=distribution --auto-publish"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"web-ext": "^4.2.0",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"size-plugin": "^2.0.1",
"terser-webpack-plugin": "^2.3.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}