Core:Selector: Move jQuery.contains from the selector to the core module
[jquery.git] / package.json
blob84a375ac6e341e6bd4c384e8c659cc4b18745c27
2   "name": "jquery",
3   "title": "jQuery",
4   "description": "JavaScript library for DOM operations",
5   "version": "4.0.0-pre",
6   "main": "dist/jquery.js",
7   "homepage": "https://jquery.com",
8   "author": {
9     "name": "OpenJS Foundation and other contributors",
10     "url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
11   },
12   "repository": {
13     "type": "git",
14     "url": "https://github.com/jquery/jquery.git"
15   },
16   "keywords": [
17     "jquery",
18     "javascript",
19     "browser",
20     "library"
21   ],
22   "bugs": {
23     "url": "https://github.com/jquery/jquery/issues"
24   },
25   "license": "MIT",
26   "dependencies": {},
27   "devDependencies": {
28     "@babel/core": "7.10.5",
29     "@babel/plugin-transform-for-of": "7.10.4",
30     "colors": "1.4.0",
31     "commitplease": "3.2.0",
32     "core-js-bundle": "3.6.5",
33     "eslint-config-jquery": "3.0.0",
34     "eslint-plugin-import": "2.25.2",
35     "grunt": "1.5.3",
36     "grunt-babel": "8.0.0",
37     "grunt-cli": "1.4.3",
38     "grunt-compare-size": "0.4.2",
39     "grunt-contrib-uglify": "3.4.0",
40     "grunt-contrib-watch": "1.1.0",
41     "grunt-eslint": "24.0.0",
42     "grunt-git-authors": "3.2.0",
43     "grunt-jsonlint": "2.1.2",
44     "grunt-karma": "4.0.2",
45     "grunt-newer": "1.3.0",
46     "grunt-npmcopy": "0.2.0",
47     "gzip-js": "0.3.2",
48     "husky": "4.2.5",
49     "insight": "0.10.3",
50     "jsdom": "19.0.0",
51     "karma": "^6.3.17",
52     "karma-browserstack-launcher": "1.6.0",
53     "karma-chrome-launcher": "3.1.1",
54     "karma-firefox-launcher": "2.1.2",
55     "karma-ie-launcher": "1.0.0",
56     "karma-jsdom-launcher": "12.0.0",
57     "karma-qunit": "4.1.2",
58     "load-grunt-tasks": "5.1.0",
59     "native-promise-only": "0.8.1",
60     "promises-aplus-tests": "2.1.2",
61     "q": "1.5.1",
62     "qunit": "2.10.1",
63     "raw-body": "2.4.1",
64     "requirejs": "2.3.6",
65     "rimraf": "3.0.2",
66     "rollup": "2.21.0",
67     "sinon": "7.3.1",
68     "strip-json-comments": "3.1.1",
69     "testswarm": "1.1.2",
70     "uglify-js": "3.4.7"
71   },
72   "scripts": {
73     "build": "npm install && grunt",
74     "start": "grunt watch",
75     "test:browserless": "grunt && grunt test:slow",
76     "test:browser": "grunt && grunt karma:main",
77     "test:esmodules": "grunt && grunt karma:esmodules",
78     "test:amd": "grunt && grunt karma:amd",
79     "test:no-deprecated": "grunt test:prepare && grunt custom:-deprecated && grunt karma:main",
80     "test:selector-native": "grunt test:prepare && grunt custom:-selector && grunt karma:main",
81     "test:slim": "grunt test:prepare && grunt custom:slim && grunt karma:main",
82     "test": "npm run test:slim && npm run test:no-deprecated && npm run test:selector-native && grunt && grunt test:slow && grunt karma:main && grunt karma:esmodules && grunt karma:amd",
83     "jenkins": "npm run test:browserless"
84   },
85   "commitplease": {
86     "nohook": true,
87     "components": [
88       "Docs",
89       "Tests",
90       "Build",
91       "Support",
92       "Release",
93       "Core",
94       "Ajax",
95       "Attributes",
96       "Callbacks",
97       "CSS",
98       "Data",
99       "Deferred",
100       "Deprecated",
101       "Dimensions",
102       "Effects",
103       "Event",
104       "Manipulation",
105       "Offset",
106       "Queue",
107       "Selector",
108       "Serialize",
109       "Traversing",
110       "Wrap"
111     ],
112     "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
113     "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
114   },
115   "husky": {
116     "hooks": {
117       "commit-msg": "commitplease .git/COMMIT_EDITMSG",
118       "pre-commit": "grunt lint:newer qunit_fixture"
119     }
120   }