-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
23 lines (23 loc) · 1.07 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": "aliexpress-invoice-generator",
"version": "2.10.0",
"description": "Browser extension for generating PDF invoices from AliExpress order detail websites",
"webExt": {
"sourceDir": "."
},
"dependencies": {
"web-ext": "^6.4.0",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"shx": "^0.3.3",
"wget-improved": "^3.2.1"
},
"scripts": {
"init": "shx --verbose cp node_modules/webextension-polyfill/dist/browser-polyfill.js . && nwget https://github.com/foliojs/pdfkit/releases/download/v0.12.1/pdfkit.standalone.js -O pdfkit.standalone.js",
"build": "web-ext build --overwrite-dest --ignore-files '**/*.xcf' --ignore-files 'CHANGELOG.md' --ignore-files 'COPYING' --ignore-files 'README.md' --ignore-files 'package-lock.json' --ignore-files 'web-ext'",
"serve": "web-ext run --verbose --ignore-files '**/*.xcf' --ignore-files 'CHANGELOG.md' --ignore-files 'COPYING' --ignore-files 'README.md' --ignore-files 'package-lock.json' --ignore-files 'web-ext'"
},
"author": "Johannes Marbach",
"license": "GPL-3.0-or-later"
}