4 "description": "JavaScript library for DOM operations",
5 "version": "4.0.0-pre",
10 "module": "./dist-module/jquery.module.js",
11 "import": "./dist-module/jquery.node-module-wrapper.js",
12 "require": "./dist/jquery.js"
14 "production": "./dist-module/jquery.module.min.js",
15 "development": "./dist-module/jquery.module.js",
16 "script": "./dist/jquery.min.js",
17 "default": "./dist-module/jquery.module.min.js"
21 "module": "./dist-module/jquery.slim.module.js",
22 "import": "./dist-module/jquery.node-module-wrapper.slim.js",
23 "require": "./dist/jquery.slim.js"
25 "production": "./dist-module/jquery.slim.module.min.js",
26 "development": "./dist-module/jquery.slim.module.js",
27 "script": "./dist/jquery.slim.min.js",
28 "default": "./dist-module/jquery.slim.module.min.js"
30 "./src/*.js": "./src/*.js"
32 "main": "dist/jquery.js",
33 "homepage": "https://jquery.com",
35 "name": "OpenJS Foundation and other contributors",
36 "url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
40 "url": "https://github.com/jquery/jquery.git"
49 "url": "https://github.com/jquery/jquery/issues"
53 "@babel/core": "7.10.5",
54 "@babel/plugin-transform-for-of": "7.10.4",
55 "@swc/core": "1.3.66",
58 "commitplease": "3.2.0",
59 "core-js-bundle": "3.6.5",
60 "eslint-config-jquery": "3.0.0",
61 "eslint-plugin-import": "2.25.2",
63 "grunt-babel": "8.0.0",
65 "grunt-compare-size": "0.4.2",
66 "grunt-contrib-watch": "1.1.0",
67 "grunt-eslint": "24.0.0",
68 "grunt-git-authors": "3.2.0",
69 "grunt-jsonlint": "2.1.2",
70 "grunt-karma": "4.0.2",
71 "grunt-newer": "1.3.0",
72 "grunt-npmcopy": "0.2.0",
77 "karma-browserstack-launcher": "1.6.0",
78 "karma-chrome-launcher": "3.1.1",
79 "karma-firefox-launcher": "2.1.2",
80 "karma-ie-launcher": "1.0.0",
81 "karma-jsdom-launcher": "12.0.0",
82 "karma-qunit": "4.1.2",
83 "karma-webkit-launcher": "2.1.0",
84 "load-grunt-tasks": "5.1.0",
85 "multiparty": "4.2.3",
86 "native-promise-only": "0.8.1",
87 "playwright-webkit": "1.30.0",
88 "promises-aplus-tests": "2.1.2",
96 "strip-json-comments": "3.1.1",
100 "build": "npm install && npm run build-all-variants",
101 "build-all-variants": "grunt custom:slim --esm --filename=jquery.slim.module.js && grunt custom --esm --filename=jquery.module.js && grunt custom:slim --filename=jquery.slim.js && grunt custom",
102 "start": "grunt watch",
103 "test:browserless": "grunt && npm run test:node_smoke_tests && grunt test:slow",
104 "test:browser": "grunt && grunt karma:main",
105 "test:esmodules": "grunt && grunt karma:esmodules",
106 "test:no-deprecated": "grunt test:prepare && grunt custom:-deprecated && grunt karma:main",
107 "test:selector-native": "grunt test:prepare && grunt custom:-selector && grunt karma:main",
108 "test:slim": "grunt test:prepare && grunt custom:slim && grunt karma:main",
109 "test:node_smoke_tests:full-module": "grunt node_smoke_tests:module:./dist-module/jquery.module.js && grunt node_smoke_tests:module:jquery",
110 "test:node_smoke_tests:full-commonjs": "grunt node_smoke_tests:commonjs:./dist/jquery.js && grunt node_smoke_tests:commonjs:jquery",
111 "test:node_smoke_tests:slim-module": "grunt node_smoke_tests:module:./dist-module/jquery.slim.module.js && grunt node_smoke_tests:module:jquery/slim",
112 "test:node_smoke_tests:slim-commonjs": "grunt node_smoke_tests:commonjs:./dist/jquery.slim.js && grunt node_smoke_tests:commonjs:jquery/slim",
113 "test:node_smoke_tests": "npm run test:node_smoke_tests:full-module && npm run test:node_smoke_tests:slim-module && npm run test:node_smoke_tests:full-commonjs && npm run test:node_smoke_tests:slim-commonjs",
114 "test": "npm run test:browserless && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native && grunt && grunt test:slow && grunt karma:main && grunt karma:esmodules",
115 "jenkins": "npm run test:browserless"
144 "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
145 "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
149 "commit-msg": "commitplease .git/COMMIT_EDITMSG",
150 "pre-commit": "grunt lint:newer qunit_fixture"