-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "webpack-sentry-plugin",
"version": "2.0.3",
"description": "Webpack plugin to upload source maps to Sentry",
"engines": {
"node": ">= 6"
},
"keywords": [
"sentry",
"webpack",
"upload",
"source-map"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "nps",
"format": "nps format",
"lint": "nps lint",
"test": "nps test",
"test:record": "nps test:record",
"test:tav": "nps test:tav",
"test:tav:record": "nps test:tav:record",
"validate": "nps validate",
"prepublish": "nps prepublish",
"precommit": "opt --in pre-commit --exec \"nps format lint\"",
"prepush": "opt --in pre-push --exec \"nps validate\""
},
"author": "Alasdair Smith <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:40thieves/webpack-sentry-plugin.git"
},
"bugs": {
"url": "https://github.com/40thieves/webpack-sentry-plugin/issues"
},
"homepage": "https://github.com/40thieves/webpack-sentry-plugin",
"jest": {
"notify": true,
"roots": [
"test"
]
},
"dependencies": {
"es6-promise-pool": "^2.5.0",
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-jest": "^24.7.1",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"jest": "^24.7.1",
"nps": "^5.9.0",
"opt-cli": "^1.6.0",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1",
"replayer": "^2.2.3",
"test-all-versions": "^4.1.1",
"webpack": "^5.0.0-beta.13"
},
"peerDependencies": {
"webpack": "^4 || ^5.0.0-alpha.11"
}
}