meli-cli/package.json

58 lines
1.8 KiB
JSON

{
"name": "@melihq/cli",
"version": "0.1.0",
"description": "Meli CLI",
"main": "build/index.js",
"bin": {
"meli": "./build/index.js"
},
"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"
},
"repository": {
"type": "git",
"url": "git@gitlab.charlie-bravo.be:meli/meli-cli.git"
},
"author": "Charlie Bravo SRL",
"license": "UNLICENSED",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.3",
"@types/node": "^12.19.4",
"@types/tar": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"axios": "^0.21.0",
"chalk": "^4.1.0",
"debug": "^4.2.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",
"form-data": "^3.0.0",
"jest": "^26.6.3",
"semantic-release-license": "^1.0.0",
"tar": "^6.0.5",
"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",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
"dependencies": {}
}