2019-06-18 22:02:34 +00:00
|
|
|
{
|
|
|
|
"name": "clitastic",
|
2020-11-13 13:43:36 +00:00
|
|
|
"version": "0.1.0",
|
2019-06-18 22:02:34 +00:00
|
|
|
"description": "Interactive CLI utility",
|
2020-11-13 13:43:36 +00:00
|
|
|
"author": {
|
|
|
|
"email": "hi@nicco.io",
|
|
|
|
"name": "Niccolo Borgioli",
|
|
|
|
"url": "https://nicco.io"
|
|
|
|
},
|
2019-06-18 22:02:34 +00:00
|
|
|
"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",
|
2020-11-13 13:43:36 +00:00
|
|
|
"main": "./lib/index.js",
|
|
|
|
"types": "./lib/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"./lib"
|
|
|
|
],
|
2019-06-18 22:02:34 +00:00
|
|
|
"devDependencies": {
|
2020-11-13 13:43:36 +00:00
|
|
|
"@types/node": "^14",
|
|
|
|
"chalk": "^4.1.0",
|
|
|
|
"ts-node-dev": "^1",
|
|
|
|
"typescript": "4.0"
|
2019-06-18 22:02:34 +00:00
|
|
|
},
|
2020-11-13 13:43:36 +00:00
|
|
|
"dependencies": {}
|
2019-06-18 22:02:34 +00:00
|
|
|
}
|