-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 931 Bytes
/
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
{
"name": "samext",
"version": "1.0.5",
"private": true,
"description": "This is an extension for Chrome and Brave that enables you to manage your tabs with ease",
"main": "background.js",
"scripts": {
"zip": "zip -r samext.zip . -x '.*' '.\\*' 'node_modules/*' 'README.md' 'package*' 'background.js' 'popup.js'",
"compress-background": "uglifyjs --compress --mangle --output background.min.js -- background.js",
"compress-popup": "uglifyjs --compress --mangle --output popup.min.js -- popup.js",
"compress-samext": "npm run compress-popup & npm run compress-background"
},
"keywords": ["chrome", "extension", "tabs-management"],
"author": "Tano Argie",
"license": "ISC",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.5",
"eslint": "^8.37.0",
"semantic-release": "^22.0.12"
},
"dependencies": {
"uglify-js": "^3.17.4"
}
}