@thedavefulton/create-node-cli
Version:
A CLI to bootstrap Node.js CLI projects
35 lines (34 loc) • 786 B
JSON
{
"name": "package-name",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"watch": "nodemon dist/index.js",
"dev": "concurrently \"npm:ts:watch\" \"npm:watch\"",
"test": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.12",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"dependencies": {
"boxen": "^5.0.1",
"chalk": "^4.1.0",
"collect.js": "^4.29.3",
"concurrently": "^6.2.1",
"lodash": "^4.17.20",
"nodemon": "^2.0.15"
}
}