UNPKG

rollbar-sourcemap-webpack-plugin

Version:
84 lines (83 loc) 2.66 kB
{ "name": "rollbar-sourcemap-webpack-plugin", "version": "3.3.0", "description": "A Webpack plugin to upload sourcemaps to Rollbar after build", "main": "./dist/RollbarSourceMapPlugin.js", "scripts": { "clean": "rimraf dist && rimraf coverage", "lint": "eslint --cache ./src ./test --ext .js", "lint:staged": "lint-staged", "prebuild": "npm run -s clean", "build": "babel src -d dist", "test": "cross-env NODE_ENV=test jest --coverage", "changelog": "npm run changelog:generate && npm run changelog:add", "changelog:add": "git add CHANGELOG.md", "changelog:generate": "github_changelog_generator --user thredup --project rollbar-sourcemap-webpack-plugin --future-release $npm_package_version", "preversion": "npm run -s lint && npm run -s test && npm run -s build", "version": "npm run changelog", "version:amend": "git commit --amend -m \"Release v${npm_package_version}\"", "postversion": "npm run version:amend && git push origin master --tags && npm publish", "prepare": "husky install" }, "repository": { "type": "git", "url": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin.git" }, "keywords": [ "webpack", "plugin", "rollbar", "source map", "sourcemap", "sourcemaps", "production" ], "author": "Brandon Doran <bdoran@gmail.com>", "bugs": { "url": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin/issues" }, "homepage": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin#readme", "license": "MIT", "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", "@babel/plugin-proposal-optional-chaining": "^7.12.1", "@babel/preset-env": "^7.12.11", "babel-eslint": "^10.1.0", "babel-jest": "^26.6.3", "cross-env": "^7.0.2", "eslint": "^7.26.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-prettier": "^3.3.1", "husky": "^6.0.0", "jest": "^26.6.3", "lint-staged": "^11.0.0", "nock": "^13.0.5", "prettier": "^2.1.2", "rimraf": "^3.0.2" }, "dependencies": { "form-data": "^4.0.0", "lodash.isfunction": "^3.0.9", "lodash.isstring": "^4.0.1", "node-fetch": "^2.6.1", "verror": "^1.6.1" }, "peerDependencies": { "webpack": ">= 4" }, "lint-staged": { "*.js": [ "eslint --cache --fix" ] }, "prettier": { "arrowParens": "avoid", "printWidth": 80, "singleQuote": true, "trailingComma": "none" } }