-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 921 Bytes
/
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
{
"dependencies": {
"jquery": "^3.7.1",
"jslint": "^0.12.1"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@html-eslint/eslint-plugin": "^0.24.0",
"@html-eslint/parser": "^0.24.0",
"@testing-library/jest-dom": "^6.6.2",
"babel-jest": "^29.7.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-jquery": "^3.0.2",
"eslint-formatter-friendly": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.1",
"jest-fetch-mock": "^3.0.3"
},
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage --"
},
"jest": {
"setupFiles": [
"./jstests/setupTests.js"
],
"testEnvironment": "jsdom",
"coverageDirectory": "coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"clover"
]
}
}