-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "react-raven",
"version": "2.0.0",
"description": "A simple React component for Sentry integration.",
"main": "dist/Raven.js",
"module": "es/Raven.js",
"scripts": {
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs NODE_ENV=production babel src --out-dir dist",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=production babel src --out-dir es",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netsyno/react-raven.git"
},
"keywords": [
"react",
"raven",
"reactjs",
"ravenjs",
"sentry",
"getsentry"
],
"author": "Daniel Rech <dr@netsyno.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/netsyno/react-raven/issues"
},
"homepage": "https://github.com/netsyno/react-raven#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3"
},
"peerDependencies": {
"raven-js": "^3.27.2",
"react": ">16.8.6"
},
"files": [
"README.md",
"LICENCSE",
"dist",
"es"
]
}