tar-compress-cli
Advanced tools
Comparing version 0.1.1 to 0.2.0
{ | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
], | ||
"rules": { | ||
"subject-case": [ | ||
0 | ||
] | ||
} | ||
"extends": ["@commitlint/config-conventional"] | ||
} |
{ | ||
"src/**/*.js": [ | ||
"prettier --write", | ||
"eslint --fix", | ||
"git add" | ||
] | ||
"*.{js,ts}": ["prettier --write", "eslint --fix"], | ||
"*.json": ["prettier --write"] | ||
} |
112
package.json
{ | ||
"name": "tar-compress-cli", | ||
"version": "0.1.1", | ||
"description": "Use tar to pack and unpack file", | ||
"bin": { | ||
"tar-compress-cli": "src/index.js" | ||
}, | ||
"scripts": { | ||
"lint": "eslint src", | ||
"prettify": "prettier --write src/**/*.js", | ||
"test": "npm run lint && nyc ava", | ||
"cover:report": "nyc report --reporter=text-lcov > coverage.lcov" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/VicSolWang/tar-compress-cli.git" | ||
}, | ||
"keywords": [ | ||
"tar", | ||
"compress", | ||
"cli" | ||
], | ||
"author": "VicSolWang", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/VicSolWang/tar-compress-cli/issues" | ||
}, | ||
"homepage": "https://github.com/VicSolWang/tar-compress-cli#readme", | ||
"dependencies": { | ||
"fs-extra": "^8.1.0", | ||
"tar": "^6.0.1", | ||
"yargs": "^15.1.0" | ||
}, | ||
"devDependencies": { | ||
"@ava/babel": "^1.0.1", | ||
"@commitlint/cli": "^8.3.5", | ||
"@commitlint/config-conventional": "^8.3.4", | ||
"ava": "^3.3.0", | ||
"eslint-config-wzx": "^0.1.4", | ||
"husky": "^4.2.1", | ||
"lint-staged": "^10.0.7", | ||
"nyc": "^15.0.0", | ||
"prettier": "^1.19.1", | ||
"shelljs": "^0.8.3" | ||
}, | ||
"ava": { | ||
"babel": true | ||
} | ||
"name": "tar-compress-cli", | ||
"version": "0.2.0", | ||
"description": "Use tar to pack and unpack file", | ||
"bin": { | ||
"tar-compress-cli": "bin/index.js" | ||
}, | ||
"main": "bin/index.js", | ||
"types": "types/index.d.ts", | ||
"engines": { | ||
"node": ">=12" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"lint:prettier": "prettier --check **/*.{js,ts,json}", | ||
"lint:eslint": "eslint --ext .js,.ts .", | ||
"lint": "npm run lint:prettier && npm run lint:eslint", | ||
"lintfix": "prettier --write --list-different **/*.{js,ts,json} && npm run lint:eslint -- --fix", | ||
"test": "npm run lint && nyc ava", | ||
"cover:report": "nyc report --reporter=text-lcov > coverage.lcov", | ||
"husky:pre-commit": "husky add .husky/pre-commit \"npx lint-staged\"", | ||
"husky:commit-msg": "husky add .husky/commit-msg \"npx --no-install commitlint --edit $1\"", | ||
"husky:init": "husky install && npm run husky:pre-commit && npm run husky:commit-msg", | ||
"prepare": "is-ci || npm run husky:init" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/VicSolWang/tar-compress-cli.git" | ||
}, | ||
"keywords": [ | ||
"tar", | ||
"compress", | ||
"cli" | ||
], | ||
"author": "VICSOLWANG", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/VicSolWang/tar-compress-cli/issues" | ||
}, | ||
"homepage": "https://github.com/VicSolWang/tar-compress-cli#readme", | ||
"dependencies": { | ||
"@types/fs-extra": "^9.0.13", | ||
"@types/node": "^17.0.5", | ||
"@types/tar": "^6.1.1", | ||
"@types/yargs": "^17.0.8", | ||
"fs-extra": "^10.0.0", | ||
"tar": "^6.1.11", | ||
"yargs": "^17.3.1" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^15.0.0", | ||
"@commitlint/config-conventional": "^15.0.0", | ||
"@types/shelljs": "^0.8.10", | ||
"@typescript-eslint/eslint-plugin": "^5.8.0", | ||
"@typescript-eslint/parser": "^5.8.0", | ||
"ava": "^3.15.0", | ||
"eslint-config-wzx": "^0.5.3", | ||
"husky": "^7.0.4", | ||
"is-ci": "^3.0.1", | ||
"lint-staged": "^12.1.3", | ||
"nyc": "^15.1.0", | ||
"prettier": "^2.5.1", | ||
"shelljs": "^0.8.4", | ||
"ts-node": "^10.4.0", | ||
"typescript": "^4.5.4" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
24231
29
556
7
15
1
+ Added@types/fs-extra@^9.0.13
+ Added@types/node@^17.0.5
+ Added@types/tar@^6.1.1
+ Added@types/yargs@^17.0.8
+ Added@types/fs-extra@9.0.13(transitive)
+ Added@types/node@17.0.45(transitive)
+ Added@types/tar@6.1.13(transitive)
+ Added@types/yargs@17.0.33(transitive)
+ Added@types/yargs-parser@21.0.3(transitive)
+ Addedcliui@8.0.1(transitive)
+ Addedescalade@3.2.0(transitive)
+ Addedfs-extra@10.1.0(transitive)
+ Addedjsonfile@6.1.0(transitive)
+ Addedminipass@4.2.8(transitive)
+ Addeduniversalify@2.0.1(transitive)
+ Addedwrap-ansi@7.0.0(transitive)
+ Addedy18n@5.0.8(transitive)
+ Addedyargs@17.7.2(transitive)
+ Addedyargs-parser@21.1.1(transitive)
- Removedcamelcase@5.3.1(transitive)
- Removedcliui@6.0.0(transitive)
- Removeddecamelize@1.2.0(transitive)
- Removedfind-up@4.1.0(transitive)
- Removedfs-extra@8.1.0(transitive)
- Removedjsonfile@4.0.0(transitive)
- Removedlocate-path@5.0.0(transitive)
- Removedp-limit@2.3.0(transitive)
- Removedp-locate@4.1.0(transitive)
- Removedp-try@2.2.0(transitive)
- Removedpath-exists@4.0.0(transitive)
- Removedrequire-main-filename@2.0.0(transitive)
- Removedset-blocking@2.0.0(transitive)
- Removeduniversalify@0.1.2(transitive)
- Removedwhich-module@2.0.1(transitive)
- Removedwrap-ansi@6.2.0(transitive)
- Removedy18n@4.0.3(transitive)
- Removedyargs@15.4.1(transitive)
- Removedyargs-parser@18.1.3(transitive)
Updatedfs-extra@^10.0.0
Updatedtar@^6.1.11
Updatedyargs@^17.3.1