Completely updated React, fixed #11, (hopefully)
This commit is contained in:
59
goTorrentWebUI/node_modules/webpack/package.json
generated
vendored
59
goTorrentWebUI/node_modules/webpack/package.json
generated
vendored
@@ -1,31 +1,31 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"webpack@3.8.1",
|
||||
"webpack@3.11.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "webpack@3.8.1",
|
||||
"_id": "webpack@3.8.1",
|
||||
"_from": "webpack@3.11.0",
|
||||
"_id": "webpack@3.11.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-5ZXLWWsMqHKFr5y0N3Eo5IIisxeEeRAajNq4mELb/WELOR7srdbQk2N5XiyNy2A/AgvlR3AmeBCZJW8lHrolbw==",
|
||||
"_integrity": "sha512-3kOFejWqj5ISpJk4Qj/V7w98h9Vl52wak3CLiw/cDOfbVTq7FeoZ0SdoHHY9PYlHr50ZS42OfvzE2vB4nncKQg==",
|
||||
"_location": "/webpack",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "webpack@3.8.1",
|
||||
"raw": "webpack@3.11.0",
|
||||
"name": "webpack",
|
||||
"escapedName": "webpack",
|
||||
"rawSpec": "3.8.1",
|
||||
"rawSpec": "3.11.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.8.1"
|
||||
"fetchSpec": "3.11.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/webpack/-/webpack-3.8.1.tgz",
|
||||
"_spec": "3.8.1",
|
||||
"_resolved": "https://registry.npmjs.org/webpack/-/webpack-3.11.0.tgz",
|
||||
"_spec": "3.11.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Tobias Koppers @sokra"
|
||||
@@ -39,8 +39,8 @@
|
||||
"dependencies": {
|
||||
"acorn": "^5.0.0",
|
||||
"acorn-dynamic-import": "^2.0.0",
|
||||
"ajv": "^5.1.5",
|
||||
"ajv-keywords": "^2.0.0",
|
||||
"ajv": "^6.1.0",
|
||||
"ajv-keywords": "^3.1.0",
|
||||
"async": "^2.1.2",
|
||||
"enhanced-resolve": "^3.4.0",
|
||||
"escope": "^3.6.0",
|
||||
@@ -66,7 +66,6 @@
|
||||
"benchmark": "^2.1.1",
|
||||
"bundle-loader": "~0.5.0",
|
||||
"codacy-coverage": "^2.0.1",
|
||||
"codecov.io": "^0.1.2",
|
||||
"coffee-loader": "~0.7.1",
|
||||
"coffee-script": "^1.10.0",
|
||||
"coveralls": "^2.11.2",
|
||||
@@ -77,6 +76,7 @@
|
||||
"express": "~4.13.1",
|
||||
"extract-text-webpack-plugin": "^3.0.0",
|
||||
"file-loader": "^0.11.2",
|
||||
"glob": "^7.1.2",
|
||||
"i18n-webpack-plugin": "^1.0.0",
|
||||
"istanbul": "^0.4.5",
|
||||
"jade": "^1.11.0",
|
||||
@@ -87,10 +87,10 @@
|
||||
"lodash": "^4.17.4",
|
||||
"mocha": "^3.2.0",
|
||||
"mocha-lcov-reporter": "^1.0.0",
|
||||
"nsp": "^2.6.1",
|
||||
"raw-loader": "~0.5.0",
|
||||
"react": "^15.2.1",
|
||||
"react-dom": "^15.2.1",
|
||||
"rimraf": "^2.6.2",
|
||||
"script-loader": "~0.7.0",
|
||||
"should": "^11.1.1",
|
||||
"simple-git": "^1.65.0",
|
||||
@@ -123,25 +123,34 @@
|
||||
},
|
||||
"scripts": {
|
||||
"appveyor:benchmark": "npm run benchmark",
|
||||
"appveyor:test": "node node_modules\\mocha\\bin\\mocha --max-old-space-size=4096 --harmony test/*.test.js",
|
||||
"appveyor:integration": "npm run cover:init && npm run cover:integration && npm run cover:report-min",
|
||||
"appveyor:unit": "npm run cover:init && npm run cover:unit && npm run cover:report-min",
|
||||
"beautify-lint": "beautify-lint \"lib/**/*.js\" \"hot/**/*.js\" \"bin/**/*.js\" \"benchmark/*.js\" \"test/*.js\"",
|
||||
"benchmark": "mocha --max-old-space-size=4096 --harmony test/*.benchmark.js -R spec",
|
||||
"benchmark": "mocha --max-old-space-size=4096 --harmony --trace-deprecation test/*.benchmark.js -R spec",
|
||||
"build:examples": "cd examples && node buildAll.js",
|
||||
"circleci:lint": "npm run lint-files && npm run nsp",
|
||||
"circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 --harmony test/*.test.js",
|
||||
"cover": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' node_modules/mocha/bin/_mocha -- test/*.test.js",
|
||||
"cover:min": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' --report lcovonly node_modules/mocha/bin/_mocha -- test/*.test.js",
|
||||
"circleci:lint": "npm run lint-files",
|
||||
"circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 --harmony --trace-deprecation test/*.test.js test/*.unittest.js",
|
||||
"cover": "npm run cover:init && npm run cover:all && npm run cover:report",
|
||||
"cover:all": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.test.js test/*.unittest.js",
|
||||
"cover:init": "rimraf coverage",
|
||||
"cover:integration": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.test.js",
|
||||
"cover:report": "istanbul report",
|
||||
"cover:report-min": "istanbul report --report lcovonly",
|
||||
"cover:unit": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.unittest.js",
|
||||
"fix": "npm run lint -- --fix",
|
||||
"lint": "eslint lib bin hot buildin \"test/**/webpack.config.js\" \"test/binCases/**/test.js\" \"examples/**/webpack.config.js\"",
|
||||
"lint-files": "npm run lint && npm run beautify-lint",
|
||||
"nsp": "nsp check --output summary",
|
||||
"lint-files": "npm run lint && npm run beautify-lint && npm run schema-lint",
|
||||
"pretest": "npm run lint-files",
|
||||
"publish-patch": "npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish",
|
||||
"test": "mocha test/*.test.js --max-old-space-size=4096 --harmony --check-leaks",
|
||||
"schema-lint": "mocha test/*.lint.js --opts test/lint-mocha.opts",
|
||||
"test": "mocha test/*.test.js test/*.unittest.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
|
||||
"test:integration": "mocha test/*.test.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
|
||||
"test:unit": "mocha test/*.unittest.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
|
||||
"travis:benchmark": "npm run benchmark",
|
||||
"travis:lint": "npm run lint-files && npm run nsp",
|
||||
"travis:test": "npm run cover:min"
|
||||
"travis:integration": "npm run cover:init && npm run cover:integration && npm run cover:report-min",
|
||||
"travis:lint": "npm run lint-files",
|
||||
"travis:unit": "npm run cover:init && npm run cover:unit && npm run cover:report-min"
|
||||
},
|
||||
"version": "3.8.1",
|
||||
"version": "3.11.0",
|
||||
"web": "lib/webpack.web.js"
|
||||
}
|
||||
|
Reference in New Issue
Block a user