mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
127 lines
3.9 KiB
JSON
127 lines
3.9 KiB
JSON
{
|
|
"_from": "webpack@^1.12.0",
|
|
"_id": "webpack@1.15.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha1-T/MfU9sDM55VFkqdRo7gMklo/pg=",
|
|
"_location": "/webpack",
|
|
"_phantomChildren": {
|
|
"has-flag": "1.0.0"
|
|
},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "webpack@^1.12.0",
|
|
"name": "webpack",
|
|
"escapedName": "webpack",
|
|
"rawSpec": "^1.12.0",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^1.12.0"
|
|
},
|
|
"_requiredBy": [
|
|
"/"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/webpack/-/webpack-1.15.0.tgz",
|
|
"_shasum": "4ff31f53db03339e55164a9d468ee0324968fe98",
|
|
"_spec": "webpack@^1.12.0",
|
|
"_where": "/Users/qudian/Downloads/WebDriverAgent-master/Inspector",
|
|
"author": {
|
|
"name": "Tobias Koppers @sokra"
|
|
},
|
|
"bin": {
|
|
"webpack": "./bin/webpack.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/webpack/webpack/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"acorn": "^3.0.0",
|
|
"async": "^1.3.0",
|
|
"clone": "^1.0.2",
|
|
"enhanced-resolve": "~0.9.0",
|
|
"interpret": "^0.6.4",
|
|
"loader-utils": "^0.2.11",
|
|
"memory-fs": "~0.3.0",
|
|
"mkdirp": "~0.5.0",
|
|
"node-libs-browser": "^0.7.0",
|
|
"optimist": "~0.6.0",
|
|
"supports-color": "^3.1.0",
|
|
"tapable": "~0.1.8",
|
|
"uglify-js": "~2.7.3",
|
|
"watchpack": "^0.2.1",
|
|
"webpack-core": "~0.6.9"
|
|
},
|
|
"deprecated": false,
|
|
"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.",
|
|
"devDependencies": {
|
|
"benchmark": "^1.0.0",
|
|
"bundle-loader": "~0.5.0",
|
|
"codecov.io": "^0.1.2",
|
|
"coffee-loader": "~0.7.1",
|
|
"coffee-script": "^1.10.0",
|
|
"component-webpack-plugin": "~0.2.0",
|
|
"coveralls": "^2.11.2",
|
|
"css-loader": "~0.15.0",
|
|
"diff": "^2.0.2",
|
|
"eslint": "^1.1.0",
|
|
"eslint-plugin-nodeca": "^1.0.3",
|
|
"express": "~4.13.1",
|
|
"extract-text-webpack-plugin": "~0.8.0",
|
|
"file-loader": "~0.8.0",
|
|
"glob": "^5.0.14",
|
|
"i18n-webpack-plugin": "~0.2.0",
|
|
"istanbul": "^0.4.5",
|
|
"jade": "^1.11.0",
|
|
"jade-loader": "~0.7.0",
|
|
"js-beautify": "^1.5.10",
|
|
"json-loader": "~0.5.1",
|
|
"less": "^2.5.1",
|
|
"less-loader": "^2.0.0",
|
|
"mocha": "^3.2.0",
|
|
"mocha-lcov-reporter": "^1.0.0",
|
|
"raw-loader": "~0.5.0",
|
|
"script-loader": "~0.6.0",
|
|
"should": "^7.0.2",
|
|
"style-loader": "~0.12.0",
|
|
"url-loader": "~0.5.0",
|
|
"val-loader": "~0.5.0",
|
|
"vm-browserify": "~0.0.0",
|
|
"webpack-dev-middleware": "^1.0.0",
|
|
"worker-loader": "~0.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.6"
|
|
},
|
|
"files": [
|
|
"lib/",
|
|
"bin/",
|
|
"buildin/",
|
|
"hot/",
|
|
"web_modules/"
|
|
],
|
|
"homepage": "https://github.com/webpack/webpack",
|
|
"license": "MIT",
|
|
"main": "lib/webpack.js",
|
|
"name": "webpack",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webpack/webpack.git"
|
|
},
|
|
"scripts": {
|
|
"appveyor:test": "node --max_old_space_size=4096 node_modules\\mocha\\bin\\mocha --harmony test/*.test.js",
|
|
"beautify": "node ./scripts/beautify-rewrite",
|
|
"beautify-lint": "node ./scripts/beautify-check",
|
|
"cover": "node ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' node_modules/mocha/bin/_mocha -- test/*.test.js",
|
|
"cover:min": "node ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' --report lcovonly node_modules/mocha/bin/_mocha -- test/*.test.js",
|
|
"lint": "eslint lib bin hot scripts",
|
|
"precover": "npm run lint && npm run beautify-lint",
|
|
"pretest": "npm run lint && npm run beautify-lint",
|
|
"publish-patch": "npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish",
|
|
"test": "mocha",
|
|
"travis:lint": "npm run lint && npm run beautify-lint",
|
|
"travis:test": "npm run cover:min"
|
|
},
|
|
"version": "1.15.0",
|
|
"web": "lib/webpack.web.js"
|
|
}
|