UNPKG

webpack-s3-plugin

Version:
63 lines (62 loc) 1.73 kB
{ "name": "webpack-s3-plugin", "version": "1.2.0-rc.0", "description": "Uploads compiled assets to s3 after build", "main": "dist/s3_plugin.js", "scripts": { "build": "webpack --mode production", "prepublishOnly": "npm run lint && npm run build", "test": "NODE_ENV='test' mocha -t 10000 --require babel-register", "lint": "eslint ./src ./test", "watch": "webpack --watch --mode development", "prep:major": "npm run build && npm version major", "prep:minor": "npm run build && npm version minor", "prep:patch": "npm run build && npm version patch" }, "repository": { "type": "git", "url": "git@github.com:webpack-contrib/s3-plugin-webpack.git" }, "keywords": [ "s3", "webpack", "node", "upload", "production" ], "author": "Mika Kalathil", "license": "MIT", "bugs": { "url": "https://github.com/webpack-contrib/s3-plugin-webpack/issues" }, "homepage": "https://github.com/webpack-contrib/s3-plugin-webpack", "dependencies": { "aws-sdk": "^2.784.0", "cdnizer": "^3.2.1", "lodash": "^4.17.20", "mime": "^2.4.6", "progress": "^2.0.3", "recursive-readdir": "^2.2.2" }, "devDependencies": { "babel-core": "^6.26.3", "babel-loader": "^8.1.0", "babel-preset-env": "^1.6.1", "chai": "^4.2.0", "css-loader": "^5.0.0", "dotenv": "^8.2.0", "eslint": "^7.12.1", "eslint-loader": "^4.0.2", "file-loader": "^6.2.0", "html-webpack-plugin": "^4.5.0", "mini-css-extract-plugin": "^1.2.1", "mocha": "^8.2.1", "sinon": "^9.2.1", "style-loader": "^2.0.0", "webpack": "^5.4.0", "webpack-cli": "^4.1.0" }, "peerDependencies": { "webpack": ">=5.0.0" } }