-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 1.06 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
{
"name": "switch-to-audible-tab",
"private": true,
"scripts": {
"test": "ava --verbose",
"copy-polyfill": "cp node_modules/webextension-polyfill/dist/browser-polyfill.min.js dist/browser-polyfill.js",
"build": "npm run copy-polyfill && spago bundle-app --to static/settings.js && npm run uglify",
"uglify": "parcel build --no-source-maps --target browser --out-file static/settings.js static/settings.js",
"pack": "zip -r ./switch-to-audible-tab.xpi img static dist src/background.js manifest.json && zip -r ./switch-to-audible-tab.zip img static dist src/background.js manifest.json",
"pack-source": "zip -r ./switch-to-audible-tab-source.zip img src manifest.json README.md package.json package-lock.json static spago.dhall packages.dhall .gitignore LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/klntsky/switch-to-audible-tab.git"
},
"devDependencies": {
"ava": "^1.4.1",
"parcel": "^1.12.3",
"webextension-polyfill": "^0.8.0",
"webextensions-geckodriver": "^0.6.1"
},
"dependencies": {}
}