-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.65 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.65 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
37
38
39
40
41
{
"name": "boostpic",
"version": "4.6.14",
"description": "Uncover the possibility to perform Google Reverse Image Search quickly and incredibly, with clip & paste.",
"main": "BoostPic_Chrome/manifest.json",
"scripts": {
"dev:chrome": "tsc --project ./BoostPic_Chrome/tsconfig.json --watch --preserveWatchOutput",
"dev:firefox": "tsc --project ./BoostPic_FireFox/tsconfig.json --watch --preserveWatchOutput",
"build": "sh build.sh",
"release": "npm run build && npm run release:chrome && npm run release:firefox && npm run release:edge",
"release:chrome": "chrome-webstore-upload upload --source=BoostPic_Chrome.zip --auto-publish",
"release:firefox": "web-ext sign --use-submission-api --channel listed --source-dir BoostPic_FireFox",
"release:edge": "publish-extension --edge-zip BoostPic_Chrome.zip",
"lint": "tsc --project ./BoostPic_Chrome/tsconfig.json --noEmit --skipLibCheck && tsc --project ./BoostPic_FireFox/tsconfig.json --noEmit --skipLibCheck",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoostPic/BoostPic.git"
},
"author": "Leslie Wong",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BoostPic/BoostPic/issues"
},
"homepage": "https://github.com/BoostPic/BoostPic#readme",
"devDependencies": {
"@types/chrome": "0.0.157",
"chrome-webstore-upload-cli": "2.1.0",
"husky": "^4.3.8",
"publish-browser-extension": "3.0.1",
"typescript": "^4.4.2",
"web-ext": "7.11.0"
},
"husky": {
"hooks": {
"commit-msg": "sh commit-msg",
"pre-commit": "npm run lint"
}
}
}