-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 2.24 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "heureka-extension",
"description": "Rozšíření pro usnadnění vyhledávání a porovnávání cen produktů na českých i slovenských eshopech. Celý příběh vzniku Porovnávače cen se dočtete [zde](https://blog.topmonks.com/ako-sme-chceli-dosta%C5%A5-heur%C3%A9ku-do-alzy-c51378799d89).",
"homepage": "https://github.com/topmonks/heureka-extension",
"repository": {
"type": "git",
"url": "git+https://github.com/topmonks/heureka-extension.git"
},
"meta": {
"name": "Porovnání cen",
"chromeWebStoreId": "jmhkgcmmgjblnkjkbgjggkaeifacakgi"
},
"scripts": {
"//dev": "Scripts for development",
"develop": "webpack --mode=development --watch",
"start:chrome": "web-ext run --target=chromium",
"cypress:open": "cypress open",
"generate-info": "node generate-info.js",
"open-all-examples-in-browser": "node utils/openAllExamplesInBrowser.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"//publish": "Scripts for publishing",
"update-version": "dot-json extension/manifest.json version $(date -u +%y.%-m.%-d.%-H%M)",
"npm run tag-version-and-push-to-trigger-publish": "git push origin tag v$(dot-json extension/manifest.json version)",
"//ci": "Scripts for CI",
"build": "webpack --mode=production",
"build:chrome": "npm run build && web-ext build --overwrite-dest --filename 'chrome-extension.zip'",
"publish:chrome": "chrome-webstore-upload upload --auto-publish --extension-id=jmhkgcmmgjblnkjkbgjggkaeifacakgi --source='extension-dist/chrome-extension.zip'"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^2.0.1",
"copy-webpack-plugin": "^5.1.1",
"cypress": "^3.8.3",
"cypress-browser-extension-plugin": "^0.1.0",
"cypress-skip-and-only-ui": "^1.2.6",
"dot-json": "^1.2.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"node-sass": "^4.14.1",
"web-ext": "^6.8.0",
"web-ext-submit": "^6.8.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-extension-reloader": "^1.1.4"
},
"dependencies": {
"arrive": "^2.4.1",
"webextension-polyfill": "^0.6.0"
}
}