@cliz/gpm
Version:
Git Project Manager
145 lines • 3.3 kB
JSON
{
"name": "@cliz/gpm",
"version": "1.4.10",
"description": "Git Project Manager",
"keywords": [
"cliz",
"manager",
"repo-manager",
"git-manager",
"project-manager",
"package-manager",
"devtools",
"git",
"repo",
"project",
"package",
"sharing"
],
"homepage": "https://github.com/koexjs/koex#readme",
"bugs": {
"url": "https://github.com/koexjs/koex/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koexjs/koex.git"
},
"license": "MIT",
"author": "zero <tobewhatwewant@gmail.com>",
"main": "lib/cli.js",
"typings": "lib/cli.d.ts",
"bin": {
"cliz-gpm": "lib/cli.js",
"gpm": "lib/cli.js"
},
"directories": {
"lib": "lib",
"config": "config"
},
"files": [
"lib",
"config"
],
"scripts": {
"bootstrap": "yarn",
"dev": "yarn watch",
"build": "yarn clean && tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json -w",
"clean": "rm -rf lib",
"test": "jest -w 1",
"coverage": "codecov",
"cli": "node lib/cli.js",
"register": "yarn cliz global register"
},
"lint-staged": {
"**/*.ts": [
"echo 'lint stage run'",
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*.{json.css,md,yml,yaml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"roots": [
"__tests__"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.(spec|test)\\.(ts|tsx)$",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"preset": "ts-jest"
},
"dependencies": {
"@cliz/cli": "^1.0.21",
"@cliz/commit": "^0.0.38",
"@cliz/inlets": "^0.12.35",
"@cliz/open": "^0.0.22",
"@cliz/proxy": "^0.0.19",
"@cliz/web-terminal": "^1.0.21",
"git-url-parse": "^11.6.0",
"prettier": "^2.4.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@koex/cli": "^0.13.33",
"@types/git-url-parse": "^9.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@zcorky/tsconfig": "^0.0.3",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"publishConfig": {
"access": "public"
},
"cliz": {
"name": "gpm"
}
}