forked from getsentry/sentry-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "@sentry/webpack-plugin",
"description": "Official webpack plugin for Sentry",
"keywords": [
"sentry",
"sentry-cli",
"webpack",
"source-map"
],
"author": "Sentry",
"version": "1.12.0",
"license": "MIT",
"repository": "[email protected]:getsentry/sentry-webpack-plugin.git",
"homepage": "https://github.com/getsentry/sentry-webpack-plugin",
"main": "src/cjs.js",
"types": "index.d.ts",
"engines": {
"node": ">= 8"
},
"dependencies": {
"@sentry/cli": "^1.55.0"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"snyk": "^1.240.1",
"webpack": "^4.39.3"
},
"scripts": {
"lint": "run-s lint:prettier lint:eslint",
"lint:prettier": "prettier-check 'src/**/*.js'",
"lint:eslint": "eslint src",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write 'src/**/*.js'",
"fix:eslint": "eslint --fix src",
"test": "jest",
"test:integration": "cd example && yarn && yarn test",
"test:watch": "jest --watch --notify",
"codecov": "codecov",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"snyk": true
}