UNPKG

commitmnt

Version:

Copy your gitlab and bitbucket commits to a new, publishable github repo

85 lines (84 loc) 2.53 kB
{ "name": "commitmnt", "version": "1.1.4", "description": "Copy your gitlab and bitbucket commits to a new, publishable github repo", "main": "dist/main/index.js", "typings": "dist/main/index.d.ts", "module": "dist/module/index.js", "repository": "https://github.com/crcarrick/commitmnt", "license": "MIT", "keywords": [ "github", "gitlab", "bitbucket", "commit", "commitment", "repository", "repo", "copy" ], "scripts": { "build": "run-p build:*", "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "doc": "run-s doc:gen && open-cli dist/docs/index.html", "doc:gen": "typedoc --options typedoc.json", "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d dist/docs", "prepare-release": "run-s reset-hard test:unit:coverage doc version", "release": "run-s prepare-release build && git push --follow-tags origin main && npm publish", "reset-hard": "git clean -dfx && git reset --hard && yarn", "test": "run-p test:*", "test:unit": "jest --projects src/lib", "test:int": "jest --projects src/__tests__/integration", "test:unit:coverage": "jest --projects src/lib --coverage", "version": "standard-version", "watch:build": "tsc -p tsconfig.json --watch", "watch:test:unit": "jest --projects src/lib --watch", "watch:test:int": "jest --projects src/__tests__/integration --watch" }, "engines": { "node": ">=14" }, "dependencies": { "date-fns": "^2.25.0", "fs-extra": "^10.0.0", "ora": "5", "pkg-up": "^4.0.0", "uuid": "^8.3.2" }, "devDependencies": { "@types/fs-extra": "^9.0.13", "@types/jest": "^27.0.2", "@types/mock-fs": "^4.13.1", "@types/node": "^16.11.7", "@types/uuid": "^8.3.1", "@typescript-eslint/eslint-plugin": "^4.0.1", "@typescript-eslint/parser": "^4.0.1", "chalk": "^4.1.2", "codecov": "^3.5.0", "eslint": "^7.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.22.0", "gh-pages": "^3.1.0", "jest": "^27.3.1", "mock-fs": "^5.1.2", "npm-run-all": "^4.1.5", "open-cli": "^6.0.1", "prettier": "^2.1.1", "standard-version": "^9.0.0", "ts-jest": "^27.0.7", "ts-node": "^10.4.0", "typedoc": "^0.22.9", "typescript": "^4.5.2" }, "files": [ "dist/main", "dist/module", "!**/*.spec.*", "!**/*.json", "CHANGELOG.md", "LICENSE", "README.md" ] }