-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
83 lines (83 loc) · 2.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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 <[email protected]>",
"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.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"nock": "^13.1.3",
"prettier": "^2.4.0",
"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"
}
}