forked from topmonks/heureka-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.54 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
{
"name": "heureka-extension",
"description": "Rozšíření vzniklo 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",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/topmonks/heureka-extension.git"
},
"scripts": {
"build": "webpack --mode=production",
"build-and-zip": "rm -rf build build.zip && npm run build && cd build && zip -r ../build.zip ./ && echo '\n=== build.zip prepared ===\n'",
"develop": "webpack --mode=development --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"cypress:open": "cypress open",
"generate-info": "node generate-info.js",
"open-all-examples-in-browser": "node utils/openAllExamplesInBrowser.js"
},
"devDependencies": {
"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",
"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",
"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"
}
}