Files
node-js-test/package.json
T
admin 536a00b728
Node.js CI Test / build (12.x) (push) Failing after 4s
Node.js CI Test / build (14.x) (push) Failing after 5s
Node.js CI Test / build (16.x) (push) Failing after 4s
Add package.json
2026-05-20 04:49:38 +00:00

21 lines
431 B
JSON

{
"name": "dummy-nodejs-todo",
"version": "0.1.1",
"description": "A simple to do server",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest src/index.test.js"
},
"author": "Devenes",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.0",
"ejs": "^2.5.7",
"express": "^4.15.4",
"supertest": "^6.2.3"
},
"devDependencies": {
"jest": "^28.0.2"
}
}