meli-cli/package.json

67 lines
2.0 KiB
JSON

{
"name": "@whatthegit/meli-cli",
"version": "1.2.0",
"description": "Meli CLI",
"main": "build/index.js",
"bin": {
"meli": "./build/index.js"
},
"files": [
"build/index.js",
"build/index.js.map"
],
"scripts": {
"start": "npm run build:watch --mode=development",
"build": "rimraf build && webpack --mode=production",
"build:watch": "webpack --watch --mode=development",
"test": "jest --config jest.config.js --runInBand --no-cache --coverage --silent",
"test:debug": "jest --config jest.config.js --runInBand --no-cache --coverage",
"test:watch": "npm run test -t --watch",
"analyze:bundle": "export ANALYZE_BUNDLE=1 && webpack --mode=production",
"lint": "eslint ./src --ext .ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix"
},
"author": "Charlie Bravo SRL",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"debug": "^4.2.0",
"form-data": "^3.0.0",
"slugify": "^1.4.6",
"source-map-support": "^0.5.19",
"tar": "^6.0.5",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.3",
"@types/node": "^12.19.4",
"@types/tar": "^4.0.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"semantic-release": "^17.3.0",
"semantic-release-license": "^1.0.2",
"terser-webpack-plugin": "^2.3.8",
"ts-jest": "^25.5.1",
"ts-loader": "^6.2.2",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
}
}