26 lines
439 B
JSON
26 lines
439 B
JSON
{
|
|
"name": "my-ci-project",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint ."
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"eslint": "^8.57.0",
|
|
"husky": "^9.0.11",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^15.2.2"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"jest --findRelatedTests"
|
|
]
|
|
}
|
|
}
|