Add and run removeNPMAbsolutePaths

This commit is contained in:
Robert Brignull 2020-05-12 12:11:25 +01:00
parent a76042ab4a
commit 256c63a715
712 changed files with 13722 additions and 18895 deletions

127
node_modules/jsdom/package.json generated vendored
View file

@ -1,13 +1,23 @@
{
"browser": {
"canvas": false,
"vm": "./lib/jsdom/vm-shim.js",
"./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js"
},
"bugs": {
"url": "https://github.com/jsdom/jsdom/issues"
},
"bundleDependencies": false,
"name": "jsdom",
"version": "15.2.1",
"description": "A JavaScript implementation of many web standards",
"keywords": [
"dom",
"html",
"whatwg",
"w3c"
],
"maintainers": [
"Elijah Insua <tmpvar@gmail.com> (http://tmpvar.com)",
"Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"Sebastian Mayr <sebmaster16@gmail.com> (https://blog.smayr.name/)",
"Joris van der Wel <joris@jorisvanderwel.com>",
"Timothy Gu <timothygu99@gmail.com> (https://timothygu.me/)",
"Zirro <code@zirro.se>"
],
"license": "MIT",
"repository": "jsdom/jsdom",
"dependencies": {
"abab": "^2.0.0",
"acorn": "^7.1.0",
@ -36,8 +46,14 @@
"ws": "^7.0.0",
"xml-name-validator": "^3.0.0"
},
"deprecated": false,
"description": "A JavaScript implementation of many web standards",
"peerDependencies": {
"canvas": "^2.5.0"
},
"peerDependenciesMeta": {
"canvas": {
"optional": true
}
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
@ -65,81 +81,34 @@
"wd": "^1.11.2",
"webidl2js": "^10.0.0"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/jsdom/jsdom#readme",
"keywords": [
"dom",
"html",
"whatwg",
"w3c"
],
"license": "MIT",
"main": "./lib/api.js",
"maintainers": [
{
"name": "Elijah Insua",
"email": "tmpvar@gmail.com",
"url": "http://tmpvar.com"
},
{
"name": "Domenic Denicola",
"email": "d@domenic.me",
"url": "https://domenic.me/"
},
{
"name": "Sebastian Mayr",
"email": "sebmaster16@gmail.com",
"url": "https://blog.smayr.name/"
},
{
"name": "Joris van der Wel",
"email": "joris@jorisvanderwel.com"
},
{
"name": "Timothy Gu",
"email": "timothygu99@gmail.com",
"url": "https://timothygu.me/"
},
{
"name": "Zirro",
"email": "code@zirro.se"
}
],
"name": "jsdom",
"peerDependencies": {
"canvas": "^2.5.0"
},
"peerDependenciesMeta": {
"canvas": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsdom/jsdom.git"
"browser": {
"canvas": false,
"vm": "./lib/jsdom/vm-shim.js",
"./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js"
},
"scripts": {
"benchmark": "node ./benchmark/runner",
"benchmark-browser": "node ./benchmark/runner --bundle",
"convert-idl": "node ./scripts/webidl/convert",
"init-wpt": "git submodule update --init --recursive",
"lint": "eslint . --cache --ext .js,.html",
"lint-is-complete": "eslint-find-rules --unused .eslintrc.json",
"prepare": "yarn convert-idl",
"pretest": "yarn convert-idl && yarn init-wpt",
"reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt",
"test": "mocha test/index.js",
"test-wpt": "mocha test/web-platform-tests/run-wpts.js",
"test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js",
"test-mocha": "mocha",
"test-api": "mocha test/api",
"test-browser": "yarn test-browser-iframe && yarn test-browser-worker",
"test": "mocha test/index.js",
"test-browser-iframe": "karma start test/karma.conf.js",
"test-browser-worker": "karma start test/karma-webworker.conf.js",
"test-mocha": "mocha",
"test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js",
"test-wpt": "mocha test/web-platform-tests/run-wpts.js",
"test-browser": "yarn test-browser-iframe && yarn test-browser-worker",
"lint": "eslint . --cache --ext .js,.html",
"lint-is-complete": "eslint-find-rules --unused .eslintrc.json",
"init-wpt": "git submodule update --init --recursive",
"reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt",
"update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json",
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt",
"update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json"
"benchmark": "node ./benchmark/runner",
"benchmark-browser": "node ./benchmark/runner --bundle",
"convert-idl": "node ./scripts/webidl/convert"
},
"version": "15.2.1"
"main": "./lib/api.js",
"engines": {
"node": ">=8"
}
}