-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "search-extensions",
"version": "0.0.1",
"description": "Browser extensions for Search for a Cause",
"main": "index.js",
"scripts": {
"test": "yarn run lint && jest --env=jsdom",
"build": "npm-run-all -s chromium:build edge:build firefox:build",
"chromium:build": "npm-run-all -s chromium:test chromium:build:no-test",
"chromium:test": "yarn test ./",
"chromium:build:no-test": "NODE_ENV=production node ./scripts/build-chromium.js chrome",
"chromium:develop": "nodemon --watch ./src nodemon -e js,json,html --exec \"yarn run chromium:build:no-test && yarn run chromium:test\"",
"edge:build": "npm-run-all -s edge:test edge:build:no-test",
"edge:test": "yarn test ./",
"edge:build:no-test": "NODE_ENV=production node ./scripts/build-chromium.js edge",
"firefox:build": "npm-run-all -s firefox:test firefox:build:no-test",
"firefox:test": "yarn test ./",
"firefox:build:no-test": "NODE_ENV=production node ./scripts/build-firefox.js",
"firefox:develop": "npm-run-all -p firefox:develop:watch firefox:develop:webext",
"firefox:develop:webext": "sleep 8 && web-ext run --source-dir=./intermediate-builds/firefox",
"firefox:develop:watch": "nodemon --watch ./src -e js,json,html --exec \"yarn run firefox:build:no-test && yarn run firefox:test\"",
"shared:build": "NODE_ENV=production node ./scripts/build-shared.js",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:fix": "yarn run format --write",
"lint": "eslint \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gladly-team/search-extensions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gladly-team/search-extensions/issues"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
],
"testEnvironmentOptions": {
"url": "http://localhost"
},
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
]
},
"homepage": "https://github.com/gladly-team/search-extensions#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"archiver": "^5.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"fs-extra": "^10.1.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"web-ext": "^7.1.1",
"webpack": "^5.74.0"
},
"dependencies": {
"qs": "^6.11.0"
}
}