-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "raven-for-redux",
"version": "1.4.0",
"description": "Middleware for propagating Redux state/actions to Sentry via Raven.",
"main": "built/index.js",
"scripts": {
"fix": "eslint --fix .",
"tdd": "jest --watch",
"test": "jest --coverage && npm run lint",
"lint": "eslint .",
"build": "babel index.js --out-dir built/",
"prepublishOnly": "npm run test && npm run build",
"serve-example": "webpack-dev-server --watch --config=example/webpack.config.js"
},
"homepage": "https://github.com/captbaritone/raven-for-redux",
"bugs": {
"url": "https://github.com/captbaritone/raven-for-redux/issues",
"email": "jordan@jordaneldredge.com"
},
"repository": {
"type": "git",
"url": "git@github.com:captbaritone/raven-for-redux.git"
},
"peerDependencies": {
"redux": ">=3.1.0"
},
"keywords": [
"middleware",
"raven",
"redux",
"error",
"logging",
"context"
],
"author": "Jordan Eldredge <jordan@jordaneldredge.com> (https://jordaneldredge.com)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^22.0.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.1.0",
"eslint-config-hss": "^6.0.0",
"eslint-config-prettier": "^2.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^7.0.1",
"jest": "^23.5.0",
"prettier": "^1.7.4",
"raven-js": "^3.12.1",
"react": "^16.0.0",
"redux": "^3.6.0",
"webpack": "^4.0.0",
"webpack-dev-server": "^3.1.2"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}