Files
ENI-cicd-tp/package.json
2025-10-23 15:26:27 +02:00

22 lines
395 B
JSON

{
"name": "my-project",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0"
},
"files": [
".gitignore",
"README.md",
"src/index.js",
"tests/unit/hello.test.js",
"tests/integration/hello.integration.test.js",
"tests/e2e/hello.e2e.test.js"
]
}