-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"name": "browser-extension-boilerplate-v3",
"version": "1.0.0",
"description": "",
"main": "dist",
"type": "module",
"scripts": {
"prepare": "npx husky install",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "pnpm run lint && pnpm run test && ./build.sh",
"lint": "npx eslint ./extension/**/*.js",
"prettier": "npx prettier --write extension/**/*.js",
"commit": "git-cz"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"keywords": [],
"author": "Albert Vallverdu<@byverdu>",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cz-commitlint": "^18.4.3",
"@commitlint/prompt": "^18.4.3",
"@commitlint/prompt-cli": "^18.4.3",
"@types/chrome": "^0.0.253",
"@types/eslint": "^8.44.7",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"babel-plugin-rewire": "^1.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"html-minifier-terser": "^7.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-chrome": "github:byverdu/jest-chrome",
"jest-environment-jsdom": "^29.7.0",
"jest-when": "^3.6.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"terser": "^5.24.0"
},
"overrides": {
"jest-chrome": {
"jest": "$jest"
}
}
}