meli-cli/package.json

67 lines
2.0 KiB
JSON
Raw Normal View History

2020-12-02 14:40:43 +00:00
{
2020-12-02 17:14:06 +00:00
"name": "@getmeli/cli",
"version": "1.1.2",
2020-12-02 14:40:43 +00:00
"description": "Meli CLI",
"main": "build/index.js",
"bin": {
"meli": "./build/index.js"
},
2020-12-02 17:14:06 +00:00
"files": [
"build/index.js",
"build/index.js.map"
2020-12-02 17:14:06 +00:00
],
2020-12-02 14:40:43 +00:00
"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": "UNLICENSED",
"dependencies": {
2021-01-25 14:24:06 +00:00
"axios": "^0.21.1",
"chalk": "^4.1.0",
"debug": "^4.2.0",
"form-data": "^3.0.0",
"slugify": "^1.4.6",
2020-12-04 16:23:41 +00:00
"source-map-support": "^0.5.19",
"tar": "^6.0.5",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
2020-12-02 14:40:43 +00:00
"devDependencies": {
2020-12-02 15:14:51 +00:00
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
2020-12-02 14:40:43 +00:00
"@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",
2020-12-02 14:40:43 +00:00
"@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",
2020-12-02 15:14:51 +00:00
"semantic-release": "^17.3.0",
2020-12-14 17:23:14 +00:00
"semantic-release-license": "^1.0.2",
2020-12-02 14:40:43 +00:00
"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"
}
2020-12-02 14:40:43 +00:00
}