clitastic/package.json

38 lines
769 B
JSON

{
"name": "clitastic",
"version": "0.1.2",
"description": "Interactive CLI utility",
"author": {
"email": "hi@nicco.io",
"name": "Niccolo Borgioli",
"url": "https://nicco.io"
},
"repository": {
"type": "git",
"url": "https://github.com/CupCakeArmy/clitastic"
},
"scripts": {
"build": "tsc",
"dev": "tsnd --respawn --no-notify test/main.ts",
"prepublishOnly": "rm -rf ./lib && npm run build"
},
"keywords": [
"cli",
"interface",
"interactive"
],
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib"
],
"devDependencies": {
"@types/node": "^14",
"chalk": "^4.1.0",
"ts-node-dev": "^1",
"typescript": "4.0"
},
"dependencies": {}
}