webpack/package.json

87 lines
2.5 KiB
JSON
Raw Normal View History

2012-03-10 20:11:23 +08:00
{
2015-04-07 20:34:24 +08:00
"name": "webpack",
2015-07-02 21:25:52 +08:00
"version": "1.10.1",
2015-04-07 20:34:24 +08:00
"author": "Tobias Koppers @sokra",
"description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
"dependencies": {
2015-07-19 00:12:18 +08:00
"async": "^1.3.0",
"clone": "^1.0.2",
2015-04-15 02:00:32 +08:00
"enhanced-resolve": "~0.8.2",
2015-07-19 00:12:18 +08:00
"esprima": "^1.2.0",
"interpret": "^0.6.4",
2015-04-15 02:00:32 +08:00
"memory-fs": "~0.2.0",
2015-04-07 20:34:24 +08:00
"mkdirp": "~0.5.0",
2015-06-26 20:20:35 +08:00
"node-libs-browser": ">= 0.4.0 <=0.6.0",
2015-04-07 20:34:24 +08:00
"optimist": "~0.6.0",
2015-07-19 00:12:18 +08:00
"supports-color": "^3.1.0",
2015-04-15 02:00:32 +08:00
"tapable": "~0.1.8",
2015-04-07 20:34:24 +08:00
"uglify-js": "~2.4.13",
"watchpack": "^0.2.1",
2015-04-15 02:00:32 +08:00
"webpack-core": "~0.6.0"
2015-04-07 20:34:24 +08:00
},
2015-05-19 15:48:24 +08:00
"license": "MIT",
2015-04-07 20:34:24 +08:00
"devDependencies": {
"benchmark": "^1.0.0",
"bundle-loader": "~0.5.0",
2015-05-28 17:47:11 +08:00
"codecov.io": "^0.1.2",
2015-04-07 20:34:24 +08:00
"coffee-loader": "~0.7.1",
"component-webpack-plugin": "~0.2.0",
2015-04-24 20:22:50 +08:00
"coveralls": "^2.11.2",
2015-07-19 00:12:18 +08:00
"css-loader": "~0.15.0",
2015-07-16 06:18:04 +08:00
"diff": "^1.4.0",
"eslint": "^0.24.0",
"eslint-plugin-nodeca": "^1.0.3",
2015-07-19 00:12:18 +08:00
"express": "~4.13.1",
2015-06-13 22:18:46 +08:00
"extract-text-webpack-plugin": "~0.8.0",
2015-04-07 20:34:24 +08:00
"file-loader": "~0.8.0",
2015-07-16 06:18:04 +08:00
"glob": "^5.0.14",
2015-04-07 20:34:24 +08:00
"i18n-webpack-plugin": "~0.2.0",
2015-04-24 20:22:50 +08:00
"istanbul": "^0.3.13",
2015-04-07 20:34:24 +08:00
"jade-loader": "~0.7.0",
"js-beautify": "^1.5.10",
2015-04-07 20:34:24 +08:00
"json-loader": "~0.5.1",
"less-loader": "^2.0.0",
"microtime": "^1.2.0",
2015-05-10 18:23:02 +08:00
"mocha": "~2.2.0",
2015-04-24 20:22:50 +08:00
"mocha-lcov-reporter": "0.0.2",
2015-04-07 20:34:24 +08:00
"raw-loader": "~0.5.0",
"script-loader": "~0.6.0",
2015-07-19 00:12:18 +08:00
"should": "^7.0.2",
2015-05-10 18:23:02 +08:00
"style-loader": "~0.12.0",
2015-04-07 20:34:24 +08:00
"url-loader": "~0.5.0",
"val-loader": "~0.5.0",
"vm-browserify": "~0.0.0",
"webpack-dev-middleware": "^1.0.0",
2015-05-10 18:23:02 +08:00
"worker-loader": "~0.6.0"
2015-04-07 20:34:24 +08:00
},
"engines": {
"node": ">=0.6"
},
"repository": {
"type": "git",
"url": "http://github.com/webpack/webpack.git"
},
"homepage": "http://github.com/webpack/webpack",
"main": "lib/webpack.js",
"web": "lib/webpack.web.js",
"bin": "./bin/webpack.js",
2015-04-21 14:57:51 +08:00
"files": [
"lib/",
"bin/",
"buildin/",
"hot/",
"web_modules/"
],
2015-04-07 20:34:24 +08:00
"scripts": {
2015-07-16 06:18:04 +08:00
"pretest": "npm run lint && npm run beautify-lint",
2015-04-24 22:24:22 +08:00
"test": "mocha",
"travis": "npm run cover -- --report lcovonly",
"lint": "eslint lib",
2015-07-16 06:18:04 +08:00
"beautify-lint": "node ./scripts/beautify-check",
"beautify": "node ./scripts/beautify-rewrite",
2015-04-24 22:24:22 +08:00
"precover": "npm run lint",
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
2015-04-17 16:24:28 +08:00
"publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish"
2015-04-07 20:34:24 +08:00
}
2014-06-05 15:31:47 +08:00
}