-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.86 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.86 KB
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
{
"name": "save-image-as-type",
"version": "2.0.0",
"description": "A Firefox extension to save images in your preferred format.",
"scripts": {
"start": "web-ext run --devtools",
"build": "web-ext build",
"lint": "web-ext lint",
"test": "web-ext run --pref extensions.experiments.enabled=true",
"clean": "rm -rf web-ext-artifacts/",
"prepare": "npm run clean && npm run build",
"sign": "web-ext sign --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET",
"version:patch": "npm version patch --no-git-tag-version && node -e \"const fs=require('fs'); const manifest=JSON.parse(fs.readFileSync('manifest.json')); const pkg=JSON.parse(fs.readFileSync('package.json')); manifest.version=pkg.version; fs.writeFileSync('manifest.json', JSON.stringify(manifest, null, 2));\"",
"version:minor": "npm version minor --no-git-tag-version && node -e \"const fs=require('fs'); const manifest=JSON.parse(fs.readFileSync('manifest.json')); const pkg=JSON.parse(fs.readFileSync('package.json')); manifest.version=pkg.version; fs.writeFileSync('manifest.json', JSON.stringify(manifest, null, 2));\"",
"version:major": "npm version major --no-git-tag-version && node -e \"const fs=require('fs'); const manifest=JSON.parse(fs.readFileSync('manifest.json')); const pkg=JSON.parse(fs.readFileSync('package.json')); manifest.version=pkg.version; fs.writeFileSync('manifest.json', JSON.stringify(manifest, null, 2));\""
},
"keywords": [
"firefox",
"extension",
"image",
"download"
],
"author": "D7OM <hello@d7om.dev>",
"license": "MPL-2.0",
"devDependencies": {
"web-ext": "^7.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/d7omdev/Save-Image-as-Type.git"
},
"bugs": {
"url": "https://github.com/d7omdev/Save-Image-as-Type/issues"
},
"homepage": "https://github.com/d7omdev/Save-Image-as-Type#readme"
}