-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
40 lines (40 loc) · 1000 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
32
33
34
35
36
37
38
39
40
{
"name": "react-transform-catch-errors",
"version": "1.0.2",
"description": "React Transform that catches errors inside React components",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gaearon/react-transform-catch-errors.git"
},
"author": "Dan Abramov <dan.abramov@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-transform-catch-errors/issues"
},
"homepage": "https://github.com/gaearon/react-transform-catch-errors#readme",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react-transform",
"react",
"reactjs",
"errors",
"rhl",
"dx"
],
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-preset-es2015": "^6.3.3",
"babel-preset-stage-0": "^6.3.13",
"rimraf": "^2.4.3"
}
}