Files
pwcli/package.json
T
2022-01-19 07:28:09 +01:00

63 lines
1.5 KiB
JSON

{
"name": "pwcli",
"version": "0.0.1",
"description": "pwcli CLI",
"private": true,
"types": "build/types/types.d.ts",
"bin": {
"pwcli": "bin/pwcli"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"lint": "tslint -p .",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "yarn format && yarn lint && yarn clean-build && yarn compile && yarn copy-templates",
"prepublishOnly": "yarn build",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@lenne.tech/gluegun-menu": "^0.0.5",
"@octokit/core": "^3.5.1",
"chalk": "^4.1.2",
"cli-select": "^1.1.2",
"enquirer": "^2.3.6",
"gluegun": "latest",
"terminal-table-output": "^1.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"jest": "^24.1.0",
"prettier": "^1.12.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}