forked from Venryx/webpack-runtime-require
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1008 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
{
"name": "webpack-runtime-require",
"version": "0.3.0",
"description": "Exposes a way to require module exports at runtime. (eg. in browser consoles)",
"main": "dist/Main.js",
"typings": "dist/Main.d.ts",
"scripts": {
"dev": "webpack --config webpack.config.js --inline --colors --progress --watch",
"dist": "babel src/index.jsx -u -o dist/index.js --stage 1 --presets react"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Venryx/webpack-runtime-require.git"
},
"keywords": [
"react"
],
"author": {
"name": "Venryx",
"email": "[email protected]",
"url": "http://venryx.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Venryx/webpack-runtime-require/issues"
},
"homepage": "https://github.com/Venryx/webpack-runtime-require",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"ts-loader": "^2.0.1",
"typescript": "^2.2.1",
"webpack": "^1.12.12"
}
}