startercodeforcicdpipeline
Version:
This is my starter code for my TYPESCRIPT CI CD PIPELINE
27 lines (26 loc) • 550 B
JSON
{
"name": "bookstore-project",
"version": "1.1.1",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"typescript",
"bookstore",
"jest",
"starter",
"education"
],
"author": "Peter Sigurdson",
"license": "ISC",
"description": "A TypeScript starter project for a Bookstore system with Jest testing setup.",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}