-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "query-params-builder-chrome-extension",
"version": "1.0.0",
"description": "Chrome extension where you can save key-value url params so you can speed up testing apps",
"main": "index.js",
"type": "module",
"scripts": {
"build": "pnpm run lint && ./build.sh",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write src/**/*.js",
"prepare": "husky install",
"test": "jest --collect-coverage",
"test:dev": "jest --watch"
},
"keywords": [],
"author": "@byverdu",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@types/bootstrap": "^5.2.6",
"@types/chrome": "^0.0.203",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.10",
"babel-jest": "^29.5.0",
"eslint": "^8.28.0",
"html-minifier-terser": "^7.1.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-chrome": "github:byverdu/jest-chrome",
"jest-environment-jsdom": "^29.5.0",
"jest-when": "^3.5.2",
"prettier": "^2.8.0",
"terser": "^5.16.1"
},
"overrides": {
"jest-chrome": {
"jest": "$jest"
}
}
}