Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tar-compress-cli

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tar-compress-cli - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

.eslintignore

9

.commitlintrc.json
{
"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"]
}
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc