clitastic/package.json

32 lines
674 B
JSON

{
"name": "clitastic",
"version": "0.0.1",
"description": "Interactive CLI utility",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"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"
],
"author": "Niccolo Borgioli",
"license": "MIT",
"devDependencies": {
"@types/node": "^12",
"ts-node-dev": "^1.0.0-pre",
"typescript": "^3.5"
},
"dependencies": {
"colors": "^1.3.3"
}
}