Build: Bump the github-actions group with 2 updates
[jquery.git] / package.json
blobd54722c7bc22ddf92146d18ef63c5ee085d82202
2   "name": "jquery",
3   "title": "jQuery",
4   "description": "JavaScript library for DOM operations",
5   "version": "4.0.0-pre",
6   "type": "module",
7   "exports": {
8     ".": {
9       "node": {
10         "import": "./dist-module/jquery.node-module-wrapper.js",
11         "default": "./dist/jquery.js"
12       },
13       "module": {
14         "import": "./dist-module/jquery.module.js",
15         "default": "./dist/jquery.bundler-require-wrapper.js"
16       },
17       "import": "./dist-module/jquery.module.js",
18       "default": "./dist/jquery.js"
19     },
20     "./slim": {
21       "node": {
22         "import": "./dist-module/jquery.node-module-wrapper.slim.js",
23         "default": "./dist/jquery.slim.js"
24       },
25       "module": {
26         "import": "./dist-module/jquery.slim.module.js",
27         "default": "./dist/jquery.bundler-require-wrapper.slim.js"
28       },
29       "import": "./dist-module/jquery.slim.module.js",
30       "default": "./dist/jquery.slim.js"
31     },
32     "./factory": {
33       "node": "./dist/jquery.factory.js",
34       "module": "./dist-module/jquery.factory.module.js",
35       "import": "./dist-module/jquery.factory.module.js",
36       "default": "./dist/jquery.factory.js"
37     },
38     "./factory-slim": {
39       "node": "./dist/jquery.factory.slim.js",
40       "module": "./dist-module/jquery.factory.slim.module.js",
41       "import": "./dist-module/jquery.factory.slim.module.js",
42       "default": "./dist/jquery.factory.slim.js"
43     },
44     "./src/*.js": "./src/*.js"
45   },
46   "main": "dist/jquery.js",
47   "scripts": {
48     "authors:check": "node -e \"require('./build/release/authors.js').checkAuthors()\"",
49     "authors:update": "node -e \"require('./build/release/authors.js').updateAuthors()\"",
50     "babel:tests": "babel test/data/core/jquery-iterability-transpiled-es6.js --out-file test/data/core/jquery-iterability-transpiled.js",
51     "build": "node ./build/command.js",
52     "build:all": "node -e \"require('./build/tasks/build.js').buildDefaultFiles()\"",
53     "build:main": "node -e \"require('./build/tasks/build.js').build()\"",
54     "lint:dev": "eslint --cache .",
55     "lint:json": "jsonlint --quiet package.json",
56     "lint": "concurrently -r \"npm:lint:dev\" \"npm:lint:json\"",
57     "npmcopy": "node build/tasks/npmcopy.js",
58     "prepare": "husky",
59     "pretest": "npm run qunit-fixture && npm run babel:tests && npm run npmcopy",
60     "qunit-fixture": "node build/tasks/qunit-fixture.js",
61     "start": "node -e \"require('./build/tasks/build.js').buildDefaultFiles({ watch: true })\"",
62     "test:bundlers": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js",
63     "test:browser": "npm run pretest && npm run build:main && npm run test:unit -- -b chrome -b firefox -h",
64     "test:browserless": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js && node build/tasks/node_smoke_tests.js && node build/tasks/promises_aplus_tests.js && npm run test:unit -- -b jsdom -m basic",
65     "test:jsdom": "npm run pretest && npm run build:main && npm run test:unit -- -b jsdom -m basic",
66     "test:node_smoke_tests": "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js",
67     "test:promises_aplus": "npm run build:main && node build/tasks/promises_aplus_tests.js",
68     "test:firefox": "npm run pretest && npm run build:main && npm run test:unit -- -v -b firefox -h",
69     "test:safari": "npm run pretest && npm run build:main && npm run test:unit -- -b safari",
70     "test:server": "node test/runner/server.js",
71     "test:esm": "npm run pretest && npm run build:main && npm run test:unit -- --esm -h",
72     "test:no-deprecated": "npm run pretest && npm run build -- -e deprecated && npm run test:unit -- -h",
73     "test:selector-native": "npm run pretest && npm run build -- -e selector && npm run test:unit -- -h",
74     "test:slim": "npm run pretest && npm run build -- --slim && npm run test:unit -- -h",
75     "test:unit": "node test/runner/command.js",
76     "test": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:esm && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native"
77   },
78   "homepage": "https://jquery.com",
79   "author": {
80     "name": "OpenJS Foundation and other contributors",
81     "url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
82   },
83   "repository": {
84     "type": "git",
85     "url": "https://github.com/jquery/jquery.git"
86   },
87   "keywords": [
88     "jquery",
89     "javascript",
90     "browser",
91     "library"
92   ],
93   "bugs": {
94     "url": "https://github.com/jquery/jquery/issues"
95   },
96   "license": "MIT",
97   "devDependencies": {
98     "@babel/cli": "7.24.7",
99     "@babel/core": "7.24.7",
100     "@babel/plugin-transform-for-of": "7.24.7",
101     "@prantlf/jsonlint": "14.0.3",
102     "@rollup/plugin-commonjs": "26.0.1",
103     "@rollup/plugin-node-resolve": "15.2.3",
104     "@swc/core": "1.5.28",
105     "@types/selenium-webdriver": "4.1.23",
106     "body-parser": "1.20.2",
107     "bootstrap": "5.3.3",
108     "browserstack-local": "1.5.5",
109     "chalk": "5.3.0",
110     "colors": "1.4.0",
111     "commitplease": "3.2.0",
112     "concurrently": "8.2.2",
113     "core-js-bundle": "3.37.1",
114     "diff": "5.2.0",
115     "eslint": "8.57.0",
116     "eslint-config-jquery": "3.0.2",
117     "eslint-plugin-import": "2.29.1",
118     "exit-hook": "4.0.0",
119     "express": "4.19.2",
120     "express-body-parser-error-handler": "1.0.7",
121     "globals": "15.4.0",
122     "husky": "9.0.11",
123     "jsdom": "24.1.0",
124     "multiparty": "4.2.3",
125     "native-promise-only": "0.8.1",
126     "promises-aplus-tests": "2.1.2",
127     "q": "1.5.1",
128     "qunit": "2.21.0",
129     "raw-body": "2.5.2",
130     "requirejs": "2.3.6",
131     "rollup": "4.18.0",
132     "selenium-webdriver": "4.21.0",
133     "sinon": "9.2.4",
134     "webpack": "5.92.0",
135     "yargs": "17.7.2"
136   },
137   "commitplease": {
138     "nohook": true,
139     "components": [
140       "Docs",
141       "Tests",
142       "Build",
143       "Support",
144       "Release",
145       "Core",
146       "Ajax",
147       "Attributes",
148       "Callbacks",
149       "CSS",
150       "Data",
151       "Deferred",
152       "Deprecated",
153       "Dimensions",
154       "Effects",
155       "Event",
156       "Manipulation",
157       "Offset",
158       "Queue",
159       "Selector",
160       "Serialize",
161       "Traversing",
162       "Wrap"
163     ],
164     "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
165     "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
166   }