spacecraft-app-cli
Version:
A simple CLI Project to solve the Spacecraft problem with typescript
66 lines (65 loc) • 1.89 kB
JSON
{
"name": "spacecraft-app-cli",
"version": "0.0.8",
"description": "A simple CLI Project to solve the Spacecraft problem with typescript",
"main": "bin/spacecraft-app-cli.js",
"author": "Lucas Pimenta",
"license": "MIT",
"bin": "./bin/spacecraft-app-cli.js",
"dependencies": {
"readline": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pyymenta/spacecraft-cli.git"
},
"keywords": [
"typescript",
"spacecraft",
"help-wanted",
"digitalocean",
"beginner-friendly",
"hacktoberfest",
"hacktoberfest2020",
"javascript",
"cli",
"challenge",
"jest"
],
"scripts": {
"build": "tsc --build .tsconfig.json",
"lint": "prettier --write '{src,tests}/**/*.{ts,tsx}' && eslint '{src,tests}/**/*.{ts,tsx}' --quiet --fix",
"postversion": "git push && git push --tags",
"preversion": "yarn lint",
"start": "node dist/main.js",
"test:dev": "jest --no-cache --watchAll",
"test": "jest --no-cache --coverage",
"version": "git add -A src"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"yarn lint",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
}
}