2012-04-18 20:07:35 +00:00
{
2013-10-15 13:51:09 +00:00
"name" : "jquery" ,
"title" : "jQuery" ,
"description" : "JavaScript library for DOM operations" ,
2019-04-08 16:21:36 +00:00
"version" : "4.0.0-pre" ,
2023-07-10 17:14:08 +00:00
"type" : "module" ,
"exports" : {
"." : {
"node" : {
"module" : "./dist-module/jquery.module.js" ,
"import" : "./dist-module/jquery.node-module-wrapper.js" ,
"require" : "./dist/jquery.js"
} ,
"production" : "./dist-module/jquery.module.min.js" ,
"development" : "./dist-module/jquery.module.js" ,
"script" : "./dist/jquery.min.js" ,
"default" : "./dist-module/jquery.module.min.js"
} ,
"./slim" : {
"node" : {
"module" : "./dist-module/jquery.slim.module.js" ,
"import" : "./dist-module/jquery.node-module-wrapper.slim.js" ,
"require" : "./dist/jquery.slim.js"
} ,
"production" : "./dist-module/jquery.slim.module.min.js" ,
"development" : "./dist-module/jquery.slim.module.js" ,
"script" : "./dist/jquery.slim.min.js" ,
"default" : "./dist-module/jquery.slim.module.min.js"
} ,
2023-09-19 16:58:24 +00:00
"./factory" : {
"node" : "./dist/jquery.factory.js" ,
"default" : "./dist-module/jquery.factory.module.js"
} ,
"./factory-slim" : {
"node" : "./dist/jquery.factory.slim.js" ,
"default" : "./dist-module/jquery.factory.slim.module.js"
} ,
2023-07-10 17:14:08 +00:00
"./src/*.js" : "./src/*.js"
} ,
2013-11-15 22:07:12 +00:00
"main" : "dist/jquery.js" ,
2023-09-18 16:39:00 +00:00
"scripts" : {
"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 -e \"require('./build/tasks/build.js').buildDefaultFiles()\"" ,
"build:main" : "node -e \"require('./build/tasks/build.js').build()\"" ,
2023-09-20 22:07:35 +00:00
"jenkins" : "npm run pretest && npm run test:browserless" ,
2023-09-18 16:39:00 +00:00
"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 install" ,
"pretest" : "npm run qunit-fixture && npm run babel:tests && npm run npmcopy" ,
"qunit-fixture" : "node build/tasks/qunit-fixture.js" ,
"start" : "node -e \"require('./build/tasks/build.js').buildDefaultFiles({ watch: true })\"" ,
2023-10-16 16:54:54 +00:00
"test:browserless" : "npm run pretest && npm run test:node_smoke_tests && npm run test:promises_aplus && npm run test:jsdom" ,
"test:browser" : "npm run pretest && npm run build:all && grunt karma:main" ,
"test:esmodules" : "npm run pretest && npm run build:main && grunt karma:esmodules" ,
"test:jsdom" : "npm run pretest && npm run build:main && grunt test:jsdom" ,
"test:no-deprecated" : "npm run pretest && npm run build -- -e deprecated && grunt karma:main" ,
"test:selector-native" : "npm run pretest && npm run build -- -e selector && grunt karma:main" ,
"test:slim" : "npm run pretest && npm run build -- --slim && grunt karma:main" ,
"test:node_smoke_tests" : "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js" ,
2023-09-18 16:39:00 +00:00
"test:promises_aplus" : "npm run build:main && node build/tasks/promises_aplus_tests.js" ,
"test" : "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:esmodules && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native"
} ,
2015-11-29 17:41:37 +00:00
"homepage" : "https://jquery.com" ,
2013-10-15 13:51:09 +00:00
"author" : {
2020-05-18 16:41:32 +00:00
"name" : "OpenJS Foundation and other contributors" ,
2021-02-05 21:00:56 +00:00
"url" : "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
2013-10-15 13:51:09 +00:00
} ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/jquery/jquery.git"
} ,
"keywords" : [
"jquery" ,
"javascript" ,
2014-04-24 19:38:38 +00:00
"browser" ,
2013-10-15 13:51:09 +00:00
"library"
] ,
"bugs" : {
2014-10-17 05:01:37 +00:00
"url" : "https://github.com/jquery/jquery/issues"
2013-10-15 13:51:09 +00:00
} ,
2015-05-19 11:05:21 +00:00
"license" : "MIT" ,
2013-10-15 13:51:09 +00:00
"devDependencies" : {
2023-09-18 16:39:00 +00:00
"@babel/cli" : "7.22.9" ,
2020-07-15 14:17:41 +00:00
"@babel/core" : "7.10.5" ,
"@babel/plugin-transform-for-of" : "7.10.4" ,
2023-09-18 16:39:00 +00:00
"@prantlf/jsonlint" : "14.0.3" ,
"@swc/core" : "1.3.78" ,
2023-07-10 16:33:05 +00:00
"bootstrap" : "5.3.0" ,
2023-09-18 16:39:00 +00:00
"chalk" : "5.3.0" ,
2022-01-10 17:54:02 +00:00
"colors" : "1.4.0" ,
2018-06-20 16:06:45 +00:00
"commitplease" : "3.2.0" ,
2023-09-18 16:39:00 +00:00
"concurrently" : "8.2.0" ,
2020-07-15 14:17:41 +00:00
"core-js-bundle" : "3.6.5" ,
2023-11-01 23:48:50 +00:00
"eslint" : "8.51.0" ,
"eslint-config-jquery" : "3.0.2" ,
"eslint-plugin-import" : "2.28.1" ,
2023-09-18 16:39:00 +00:00
"express" : "4.18.2" ,
"globals" : "13.20.0" ,
2022-10-03 21:06:37 +00:00
"grunt" : "1.5.3" ,
2022-03-14 16:58:41 +00:00
"grunt-cli" : "1.4.3" ,
2016-04-23 17:25:47 +00:00
"grunt-git-authors" : "3.2.0" ,
2022-03-14 16:58:41 +00:00
"grunt-karma" : "4.0.2" ,
2023-09-18 16:39:00 +00:00
"husky" : "8.0.3" ,
2022-03-14 16:58:41 +00:00
"jsdom" : "19.0.0" ,
2023-01-23 22:49:44 +00:00
"karma" : "6.4.1" ,
2020-07-15 14:17:41 +00:00
"karma-browserstack-launcher" : "1.6.0" ,
2022-03-14 16:58:41 +00:00
"karma-chrome-launcher" : "3.1.1" ,
"karma-firefox-launcher" : "2.1.2" ,
2018-11-12 16:49:44 +00:00
"karma-ie-launcher" : "1.0.0" ,
2022-03-14 16:58:41 +00:00
"karma-jsdom-launcher" : "12.0.0" ,
"karma-qunit" : "4.1.2" ,
2023-01-23 22:49:44 +00:00
"karma-webkit-launcher" : "2.1.0" ,
2020-07-15 14:17:41 +00:00
"load-grunt-tasks" : "5.1.0" ,
2023-02-01 12:48:35 +00:00
"multiparty" : "4.2.3" ,
2016-01-27 11:54:39 +00:00
"native-promise-only" : "0.8.1" ,
2023-02-14 09:11:40 +00:00
"playwright-webkit" : "1.30.0" ,
2016-09-12 17:27:56 +00:00
"promises-aplus-tests" : "2.1.2" ,
2018-06-20 16:06:45 +00:00
"q" : "1.5.1" ,
2020-07-15 14:17:41 +00:00
"qunit" : "2.10.1" ,
"raw-body" : "2.4.1" ,
2018-11-11 04:52:13 +00:00
"requirejs" : "2.3.6" ,
2020-07-15 14:17:41 +00:00
"rimraf" : "3.0.2" ,
"rollup" : "2.21.0" ,
2019-04-04 14:53:38 +00:00
"sinon" : "7.3.1" ,
2020-07-15 14:17:41 +00:00
"strip-json-comments" : "3.1.1" ,
2023-09-18 16:39:00 +00:00
"testswarm" : "1.1.2" ,
"yargs" : "17.7.2"
2014-12-07 06:46:25 +00:00
} ,
"commitplease" : {
2016-06-16 09:42:26 +00:00
"nohook" : true ,
2014-12-07 06:46:25 +00:00
"components" : [
"Docs" ,
"Tests" ,
"Build" ,
2016-03-28 13:11:10 +00:00
"Support" ,
2014-12-07 06:46:25 +00:00
"Release" ,
"Core" ,
"Ajax" ,
"Attributes" ,
"Callbacks" ,
"CSS" ,
"Data" ,
"Deferred" ,
2015-10-18 15:02:16 +00:00
"Deprecated" ,
2014-12-07 06:46:25 +00:00
"Dimensions" ,
"Effects" ,
"Event" ,
"Manipulation" ,
"Offset" ,
"Queue" ,
"Selector" ,
"Serialize" ,
2015-01-12 03:24:02 +00:00
"Traversing" ,
"Wrap"
2016-06-16 09:42:26 +00:00
] ,
2017-01-09 16:45:30 +00:00
"markerPattern" : "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)" ,
"ticketPattern" : "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
2013-10-15 13:51:09 +00:00
}
2012-04-18 20:07:35 +00:00
}