-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "babel-try-catch-loader",
"version": "0.2.2",
"author": "syszhpe@gmail.com",
"description": "babel try catch loader for webpack",
"main": "lib/index.js",
"scripts": {
"test": "webpack --config ./test/webpack.test.js",
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib --compact=false",
"prepublish": "npm run build"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"webpack": "^1.12.14"
},
"repository": {
"type": "git",
"url": "https://github.com/foio/babel_try_catch_loader"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"babel-core": "^6.24.0",
"loader-utils": "^0.2.5",
"object-assign": "^4.1.1",
"source-map": "^0.5.6"
}
}