@backtrace/webpack-plugin
Version:
Backtrace Webpack plugin
67 lines (66 loc) • 2.13 kB
JSON
{
"name": "@backtrace/webpack-plugin",
"version": "0.1.0",
"description": "Backtrace Webpack plugin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc -b ./tsconfig.build.json",
"build:webpack": "webpack",
"clean": "tsc -b ./tsconfig.build.json --clean && rimraf \"lib\"",
"format": "prettier --write '**/*.ts'",
"lint": "eslint . --ext .ts",
"prepublishOnly": "NODE_ENV=production npm run build",
"watch": "tsc -b ./tsconfig.build.json -w",
"test:e2e": "npm run test:e2e:webpackv5 && npm run test:e2e:webpackv4",
"test:e2e:webpackv4": "NODE_ENV=test jest --config ./webpack4.e2e.jest.config.js",
"test:e2e:webpackv5": "NODE_ENV=test jest --config ./e2e.jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backtrace-labs/backtrace-javascript.git"
},
"keywords": [
"Error",
"Reporting",
"Diagnostic",
"Tool",
"Bug",
"Bugs",
"StackTrace",
"Source maps",
"Sourcemaps",
"Webpack"
],
"author": "Backtrace <team@backtrace.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/backtrace-labs/backtrace-javascript/issues"
},
"homepage": "https://github.com/backtrace-labs/backtrace-javascript#readme",
"files": [
"/lib"
],
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/webpack-sources": "^3.2.0 || ^1.4.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3 || ^8.4.0",
"ts-loader-webpack-4": "npm:ts-loader@^8.4.0",
"typescript": "^5.0.4",
"webpack-4": "npm:webpack@^4.46.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-sources-webpack-4": "npm:webpack-sources@^1.4.1"
},
"dependencies": {
"@backtrace/sourcemap-tools": "^0.2.0"
},
"peerDependencies": {
"webpack": "^5.85.0 || ^4.46.0"
}
}