-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "amazon-returns-extension",
"version": "1.4.0",
"description": "Browser extension that displays return cost information on Amazon product pages (Chrome, Edge, Firefox)",
"packageManager": "yarn@4.6.0",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"package:chrome": "yarn build && cd dist && zip -r ../amazon-returns-chrome.zip * && cd .. && echo 'Created amazon-returns-chrome.zip'",
"package:firefox": "yarn build && cd dist && zip -r ../amazon-returns-firefox.zip * && cd .. && echo 'Created amazon-returns-firefox.zip'",
"package:all": "yarn package:chrome && yarn package:firefox",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:extension": "yarn node test-extension.js",
"test:dynamic": "yarn node test-dynamic.js",
"demo": "yarn node demo-extension.js"
},
"keywords": [
"browser-extension",
"webextension",
"chrome",
"firefox",
"amazon",
"returns"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.1.36",
"@types/identity-obj-proxy": "^3",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.10",
"@types/webextension-polyfill": "^0.12.4",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-util": "^30.2.0",
"jsdom": "^27.4.0",
"puppeteer": "^24.36.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
}
}