-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 844 Bytes
/
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
{
"name": "react-transform-sentry",
"version": "1.0.0",
"description": "A React Transform that catches errors inside React's lifecycle methods and reports to sentry.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/luisrudge/react-transform-sentry.git"
},
"author": "Luis Rudge <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luisrudge/react-transform-sentry/issues"
},
"homepage": "https://github.com/luisrudge/react-transform-sentry#readme",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react-transform",
"react",
"reactjs",
"sentry"
],
"devDependencies": {
"babel": "5.8.23",
"rimraf": "2.4.3"
}
}