-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 KB
/
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": "static-files-plugin",
"version": "0.9.1",
"description": "Use Webpack to compile from static files to static files",
"author": "Ryan Hornberger <[email protected]> (https://github.com/ryanhornberger)",
"license": "MIT",
"homepage": "https://github.com/ryanhornberger/webpack-static-files-plugin",
"repository": {
"type": "git",
"url": "https://github.com/ryanhornberger/webpack-static-files-plugin.git"
},
"bugs": {
"url": "https://github.com/ryanhornberger/webpack-static-files-plugin/issues"
},
"main": "lib/StaticFilesPlugin.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha -R test/plugin_spec.js --reporter spec",
"webpack": "node_modules/webpack/bin/webpack.js --config ./test/plugin_spec/webpack.config.js",
"watch": "node_modules/webpack/bin/webpack.js --watch --config ./test/plugin_spec/webpack.config.js"
},
"dependencies": {
"fs-extra": "^0.26.2",
"path": "^0.12.7",
"tapable": "^0.1.9",
"watchpack": "^0.2.9",
"webpack": "^1.12.6",
"webpack-core": "^0.6.8"
},
"devDependencies": {
"babel": "^4.6.5",
"babel-core": "^5.6.15",
"babel-loader": "^5.2.1",
"chai": "^3.4.1",
"file-loader": "^0.8.4",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"nunjucks-html-loader": "^1.0.0",
"sass-loader": "^3.1.1"
}
}