-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
155 lines (155 loc) · 4.43 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"author": "iamogbz",
"repository": {
"type": "git",
"url": "git+https://github.com/iamogbz/chrome-alt-tabs.git"
},
"bugs": {
"url": "https://github.com/iamogbz/chrome-alt-tabs/issues"
},
"homepage": "https://github.com/iamogbz/chrome-alt-tabs#readme",
"license": "GPL-3.0",
"keywords": [
"chrome",
"extension",
"google",
"productivity",
"tabs"
],
"engines": {
"node": ">=10.4.0",
"npm": ">=6.1.0"
},
"scripts": {
"build": "webpack --mode=production",
"build-watch": "webpack --mode=development --watch",
"commit": "git-cz",
"commitlint": "commitlint-travis",
"coveralls": "cat ./artifacts/coverage/lcov.info | coveralls",
"lint": "eslint . --ext .js,.ts",
"release": "semantic-release",
"test": "jest",
"test-watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"semantic-release-chrome",
{
"asset": "cats.zip",
"extensionId": "ebdcpdepkbefmgfdkdplcmhfkddagfon"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "cats.zip"
}
]
}
]
]
},
"jest": {
"preset": "ts-jest",
"moduleDirectories": [
"./src",
"./tests",
"./node_modules"
],
"setupFilesAfterEnv": [
"./config/setupTests.ts"
],
"testPathIgnorePatterns": [
"./artifacts/",
"./node_modules/"
],
"transform": {
"\\.html$": "@glen/jest-raw-loader"
},
"coverageDirectory": "./artifacts/coverage",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"node",
"js",
"jsx",
"json",
"ts",
"tsx",
"html"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"bash -c 'pnpm run typecheck'",
"jest --bail --findRelatedTests"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/travis-cli": "^19.3.0",
"@glen/jest-raw-loader": "^2.0.0",
"@semantic-release/changelog": "^6.0.3",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"acorn": "^8.12.0",
"ajv": "^8.16.0",
"babel-loader": "^9.1.3",
"babel-runtime": "^6.26.0",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^12.0.2",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"image-minimizer-webpack-plugin": "^4.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-props": "^1.9.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"rxjs": "^7.8.1",
"semantic-release": "^24.0.0",
"semantic-release-chrome": "^3.2.0",
"sharp": "^0.32.6",
"sinon-chrome": "^3.0.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"core-js": "^3.37.1",
"crx-livereload": "^0.2.1",
"regenerator-runtime": "^0.14.1"
}
}