pulse-cli
Version:
The Pulse CLI tool for pulse-server
51 lines (50 loc) • 1.27 kB
JSON
{
"name": "pulse-cli",
"version": "1.0.5",
"description": "The Pulse CLI tool for pulse-server",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/NateTheDev1/pulse-cli"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && cp -r src/template dist/template",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"Pulse",
"Pulse CLI"
],
"author": "Nathaniel Richards",
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"pretty-cli": "^0.0.14"
},
"bin": {
"pulse-cli": "./dist/index.js"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.6",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6"
}
}