UNPKG

nuke-cli

Version:

A CLI focused on powering the start of your web project.

88 lines (87 loc) 1.98 kB
{ "name": "nuke-cli", "version": "1.1.2", "description": "A CLI focused on powering the start of your web project.", "author": { "name": "cl4pper", "email": "cl4pper@gmail.com" }, "types": "build/types/types.d.ts", "bin": { "nuke": "bin/nuke-cli" }, "scripts": { "clean-build": "rimraf -rf ./build", "compile": "tsc -p .", "copy-templates": "copyfiles ./src/templates/* ./build/templates", "build": "yarn clean-build && yarn compile && yarn copy-templates", "prepublishOnly": "yarn build", "format": "prettier --write '**/*.ejs' '**/*.test.ts' '**/*.ts' --no-error-on-unmatched-pattern", "test": "jest", "watch": "jest --watch", "snapupdate": "jest --updateSnapshot", "coverage": "jest --coverage" }, "repository": { "type": "git", "url": "https://github.com/cl4pper/nuke-cli.git" }, "keywords": [ "nuke-cli", "nuke", "cli", "web", "boilerplate", "setup", "react", "node", "typescript", "javascript", "webpack", "jest", "frontend", "backend", "fullstack" ], "files": [ "build", "LICENSE", "readme.md", "docs", "bin" ], "license": "MIT", "dependencies": { "gluegun": "latest" }, "devDependencies": { "@types/node": "^12.7.11", "@types/jest": "^26.0.20", "@typescript-eslint/eslint-plugin": "^4.17.0", "@typescript-eslint/parser": "^4.17.0", "ts-jest": "^26.5.3", "ts-node": "^10.9.1", "typescript": "~4.5.0", "copyfiles": "^2.4.1", "eslint": "^7.22.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^3.3.1", "husky": "^5.1.3", "jest": "^26.6.3", "prettier": "^2.2.1", "pretty-quick": "^3.1.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" }, "prettier": { "semi": false, "singleQuote": true }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } } }