-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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": "jstest",
"version": "1.0.0",
"description": "test for js",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chudofa-L/JavaScript--set-up-the-environment.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chudofa-L/JavaScript--set-up-the-environment/issues"
},
"homepage": "https://github.com/Chudofa-L/JavaScript--set-up-the-environment#readme",
"lint-staged": {
"src/**/*.js": "eslint"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.25.1",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.5.1",
"prettier": "3.5.3"
}
}