@getditto/project-cli
Version:
node-typescript-starter cli
67 lines (66 loc) • 1.59 kB
JSON
{
"name": "@getditto/project-cli",
"version": "0.0.12",
"description": "node-typescript-starter cli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/getditto/project-cli.git"
},
"publishConfig": {
"access": "public"
},
"author": "Maximilian Alexander",
"keywords": [
"Project",
"Cli"
],
"bin": {
"project-cli": "dist/index.js",
"pcli": "dist/index.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"watch": "tsc --watch",
"test": "mocha --opts tests/mocha.opts",
"test-watch": "mocha --opts tests/mocha.opts --watch",
"clean": "rm -rf dist",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"prepare": "npm run build",
"postinstall": "node ./dist/postinstall.js"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8.6"
},
"dependencies": {
"colors": "^1.3.3",
"commander": "^2.19.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"shelljs": "^0.8.3"
},
"bugs": {
"url": "https://github.com/getditto/project-cli/issues"
},
"homepage": "https://github.com/getditto/project-cli#readme",
"directories": {
"test": "tests"
}
}