forked from 40thieves/webpack-sentry-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "webpack-sentry-plugin",
"version": "1.9.2",
"description": "Webpack plugin to upload source maps to Sentry",
"keywords": [
"sentry",
"webpack",
"upload",
"source-map"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "nps",
"test": "nps test",
"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",
"dependencies": {
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^17.0.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"dotenv": "^2.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.2",
"jest": "^17.0.3",
"nps": "^5.0.5",
"opt-cli": "^1.5.1",
"prettier": "^0.22.0",
"prettier-eslint-cli": "^3.1.2",
"webpack": "^2.3.0"
},
"peerDependencies": {
"webpack": "^1.14.0 || ^2.2.0"
},
"jest": {
"notify": true,
"testPathDirs": [
"test"
],
"mocksPattern": "test/mocks"
}
}