Files
ENI-cicd-tp/package.json

24 lines
445 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",
"supertest": "^6.3.0",
"axios": "^1.3.4"
},
"files": [
".gitignore",
"README.md",
"src/index.js",
"tests/unit/hello.test.js",
"tests/integration/hello.integration.test.js",
"tests/e2e/hello.e2e.test.js"
]
}