-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "search-for-tab",
"version": "1.1.0",
"description": "Mozilla Firefox extension allowing to search for a specific tab open in current browser window ",
"main": "manifest.json",
"scripts": {
"test": "jest",
"package-verify": "eslint . && npm run deploy && web-ext --source-dir ./build lint",
"ci": "npm run test && npm run package-verify",
"build": "babel --config-file ./.babelrc ./app --extensions \".ts,.tsx\" -Dd ./build && webpack --mode development",
"deploy": "babel --config-file ./.babelrc ./app --extensions \".ts,.tsx\" -Dd ./build && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BartoszKlonowski/search-for-tab.git"
},
"keywords": [
"Firefox",
"Extension",
"Plugin",
"Website",
"Tabs"
],
"author": "Bartosz Klonowski",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/BartoszKlonowski/search-for-tab/issues"
},
"homepage": "https://github.com/BartoszKlonowski/search-for-tab#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.14.5",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-preset-react-app": "^10.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^27.0.5",
"mockzilla": "^0.14.0",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.4",
"web-ext": "^7.2.0",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.42.0",
"webpack-cli": "^4.9.2"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setupTests.ts"
]
},
"prettier": {
"trailingComma": "es5",
"printWidth": 100,
"tabWidth": 4,
"bracketSpacing": false,
"jsxBracketSameLine": true,
"endOfLine": "auto"
}
}