mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
92a437bed2
Some checks failed
Browserstack / ${{ matrix.BROWSER }} (Chrome_latest) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Chrome_latest-1) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Edge_18) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Edge_latest) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Edge_latest-1) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_102) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_115) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_48) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_60) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_78) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_91) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_latest) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Firefox_latest-1) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (IE_10) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (IE_11) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (IE_9) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Opera_latest) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Safari_latest) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (Safari_latest-1) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_10) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_11) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_12) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_13) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_14) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_15) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_16) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_17) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_8) (push) Has been cancelled
Browserstack / ${{ matrix.BROWSER }} (__iOS_9) (push) Has been cancelled
Filestash / Update Filestash (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Chrome, 20.x, test:amd) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Chrome, 20.x, test:no-deprecated) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Chrome, 20.x, test:selector-native) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Chrome, 20.x, test:slim) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Chrome/Firefox, 20.x, test:browser) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Firefox ESR (new), 20.x, test:firefox) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Firefox ESR (old), 20.x, test:firefox) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Node, 18.x, test:browserless) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Node, 20.x, lint) (push) Has been cancelled
Node / ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }}) (Node, 20.x, test:browserless) (push) Has been cancelled
Node / test:ie - IE (push) Has been cancelled
Node / test:safari - Safari (push) Has been cancelled
The upstream package has been unmaintained for years, with dependencies
with long-reported security issues. Switching to a fork allows to resolve
all the security reports against the jQuery development environment.
The fork is maintained by @mgol and has the following changes:
1. The `underscore` dependency has been removed.
2. `sinon` has been updated from v1 to v19.
3. `mocha` has been updated from v2 to v10.
Changes to the source are minimal; it will be easy to rebase the fixes
if the upstream package is ever updated.
In addition to the above, the `q` dependency has been removed.
It's been added in gh-1996 but never really used.
Closes gh-5559
(cherry picked from commit 559bc5ac58
)
132 lines
5.3 KiB
JSON
132 lines
5.3 KiB
JSON
{
|
|
"name": "jquery",
|
|
"title": "jQuery",
|
|
"description": "JavaScript library for DOM operations",
|
|
"version": "3.7.1",
|
|
"main": "dist/jquery.js",
|
|
"scripts": {
|
|
"authors:check": "node --input-type=module -e \"import { checkAuthors } from './build/release/authors.js'; checkAuthors()\"",
|
|
"authors:update": "node --input-type=module -e \"import { updateAuthors } from './build/release/authors.js'; updateAuthors()\"",
|
|
"babel:tests": "babel test/data/core/jquery-iterability-transpiled-es6.js --out-file test/data/core/jquery-iterability-transpiled.js",
|
|
"build": "node ./build/command.js",
|
|
"build:all": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles()\"",
|
|
"build:clean": "rimraf --glob dist/*.{js,map} --glob dist-module/*.{js,map}",
|
|
"build:main": "node --input-type=module -e \"import { build } from './build/tasks/build.js'; build()\"",
|
|
"lint:dev": "eslint --cache .",
|
|
"lint:json": "jsonlint --quiet package.json",
|
|
"lint": "concurrently -r \"npm:lint:dev\" \"npm:lint:json\"",
|
|
"npmcopy": "node build/tasks/npmcopy.js",
|
|
"prepare": "husky",
|
|
"pretest": "npm run qunit-fixture && npm run babel:tests && npm run npmcopy",
|
|
"qunit-fixture": "node build/tasks/qunit-fixture.js",
|
|
"release": "release-it",
|
|
"release:cdn": "node build/release/cdn.js",
|
|
"release:clean": "rimraf tmp changelog.html contributors.html",
|
|
"release:dist": "node build/release/dist.js",
|
|
"release:verify": "node build/release/verify.js",
|
|
"start": "nodemon --watch src -x \"npm run build:all\"",
|
|
"test:browser": "npm run pretest && npm run build:main && npm run test:unit -- -b chrome -b firefox -h",
|
|
"test:browserless": "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js && node build/tasks/promises_aplus_tests.js && npm run test:unit -- -b jsdom -m basic",
|
|
"test:jsdom": "npm run pretest && npm run build:main && npm run test:unit -- -b jsdom -m basic",
|
|
"test:node_smoke_tests": "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js",
|
|
"test:promises_aplus": "npm run build:main && node build/tasks/promises_aplus_tests.js",
|
|
"test:chrome": "npm run pretest && npm run build:main && npm run test:unit -- -v -b chrome -h",
|
|
"test:edge": "npm run pretest && npm run build:main && npm run test:unit -- -v -b edge -h",
|
|
"test:firefox": "npm run pretest && npm run build:main && npm run test:unit -- -v -b firefox -h",
|
|
"test:ie": "npm run pretest && npm run build:main && npm run test:unit -- -v -b ie",
|
|
"test:safari": "npm run pretest && npm run build:main && npm run test:unit -- -b safari",
|
|
"test:server": "node test/runner/server.js",
|
|
"test:amd": "npm run pretest && npm run build:main && npm run test:unit -- --amd -h",
|
|
"test:no-deprecated": "npm run pretest && npm run build -- -e deprecated && npm run test:unit -- -h",
|
|
"test:selector-native": "npm run pretest && npm run build -- -e selector && npm run test:unit -- -h",
|
|
"test:slim": "npm run pretest && npm run build -- --slim && npm run test:unit -- -h",
|
|
"test:unit": "node test/runner/command.js",
|
|
"test": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:amd && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native"
|
|
},
|
|
"homepage": "https://jquery.com",
|
|
"author": {
|
|
"name": "OpenJS Foundation and other contributors",
|
|
"url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jquery/jquery.git"
|
|
},
|
|
"keywords": [
|
|
"jquery",
|
|
"javascript",
|
|
"browser",
|
|
"library"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/jquery/jquery/issues"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/cli": "7.24.8",
|
|
"@babel/core": "7.25.2",
|
|
"@babel/plugin-transform-for-of": "7.24.7",
|
|
"@prantlf/jsonlint": "14.0.3",
|
|
"@types/selenium-webdriver": "4.1.24",
|
|
"archiver": "7.0.1",
|
|
"bootstrap": "5.3.3",
|
|
"browserstack-local": "1.5.5",
|
|
"chalk": "5.3.0",
|
|
"colors": "1.4.0",
|
|
"commitplease": "3.2.0",
|
|
"concurrently": "8.2.2",
|
|
"core-js-bundle": "3.38.0",
|
|
"cross-env": "7.0.3",
|
|
"diff": "5.2.0",
|
|
"eslint": "9.8.0",
|
|
"eslint-config-jquery": "3.0.2",
|
|
"exit-hook": "4.0.0",
|
|
"globals": "15.9.0",
|
|
"husky": "9.1.4",
|
|
"jsdom": "24.1.1",
|
|
"marked": "14.0.0",
|
|
"native-promise-only": "0.8.1",
|
|
"nodemon": "3.1.4",
|
|
"promises-aplus-tests": "npm:@mgol/promises-aplus-tests@2.1.2-mgol.1",
|
|
"qunit": "2.21.1",
|
|
"raw-body": "3.0.0",
|
|
"release-it": "17.6.0",
|
|
"requirejs": "2.3.7",
|
|
"rimraf": "6.0.1",
|
|
"selenium-webdriver": "4.23.0",
|
|
"sinon": "7.5.0",
|
|
"uglify-js": "3.7.7",
|
|
"yargs": "17.7.2"
|
|
},
|
|
"commitplease": {
|
|
"nohook": true,
|
|
"components": [
|
|
"Docs",
|
|
"Tests",
|
|
"Build",
|
|
"Support",
|
|
"Release",
|
|
"Core",
|
|
"Ajax",
|
|
"Attributes",
|
|
"Callbacks",
|
|
"CSS",
|
|
"Data",
|
|
"Deferred",
|
|
"Deprecated",
|
|
"Dimensions",
|
|
"Effects",
|
|
"Event",
|
|
"Manipulation",
|
|
"Offset",
|
|
"Queue",
|
|
"Selector",
|
|
"Serialize",
|
|
"Traversing",
|
|
"Wrap"
|
|
],
|
|
"markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
|
|
"ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
|
|
}
|
|
}
|