forked from webpack/enhanced-require
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 950 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": "enhanced-require",
"version": "0.5.0-beta6",
"author": "Tobias Koppers @sokra",
"description": "Enhance the require function in node.js with support for loaders which preprocess files and really async require (AMD). Enables Hot Code Replacement.",
"dependencies": {
"enhanced-resolve": "0.5.x",
"webpack-core": "0.1.x",
"async": "0.2.x",
"clone": "0.1.x",
"buffer-equal": "0.0.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "1.8.x",
"should": "1.1.x",
"raw-loader": "0.5.x",
"jade-loader": "0.5.x"
},
"main": "lib/require",
"bin": {
"enhanced-require": "bin/enhanced-require.js",
"enhanced-require-hot-watch": "bin/hot-watch.js"
},
"engines": {
"node": ">=0.6"
},
"homepage": "http://github.com/webpack/enhanced-require",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha --reporter spec"
}
}