UNPKG

3.26 kBJSONView Raw
1{
2 "name": "jquery",
3 "title": "jQuery",
4 "description": "JavaScript library for DOM operations",
5 "version": "3.6.3",
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/3.6.3/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 "devDependencies": {
27 "@babel/core": "7.3.3",
28 "@babel/plugin-transform-for-of": "7.2.0",
29 "colors": "1.4.0",
30 "commitplease": "3.2.0",
31 "core-js": "2.6.5",
32 "eslint-config-jquery": "3.0.0",
33 "grunt": "1.5.3",
34 "grunt-babel": "8.0.0",
35 "grunt-cli": "1.4.3",
36 "grunt-compare-size": "0.4.2",
37 "grunt-contrib-uglify": "3.4.0",
38 "grunt-contrib-watch": "1.1.0",
39 "grunt-eslint": "22.0.0",
40 "grunt-git-authors": "3.2.0",
41 "grunt-jsonlint": "2.1.2",
42 "grunt-karma": "4.0.2",
43 "grunt-newer": "1.3.0",
44 "grunt-npmcopy": "0.2.0",
45 "gzip-js": "0.3.2",
46 "husky": "4.2.5",
47 "jsdom": "19.0.0",
48 "karma": "^6.3.17",
49 "karma-browserstack-launcher": "1.6.0",
50 "karma-chrome-launcher": "3.1.1",
51 "karma-firefox-launcher": "2.1.2",
52 "karma-ie-launcher": "1.0.0",
53 "karma-jsdom-launcher": "12.0.0",
54 "karma-qunit": "4.1.2",
55 "load-grunt-tasks": "5.1.0",
56 "native-promise-only": "0.8.1",
57 "promises-aplus-tests": "2.1.2",
58 "q": "1.5.1",
59 "qunit": "2.9.2",
60 "raw-body": "2.3.3",
61 "requirejs": "2.3.6",
62 "sinon": "2.3.7",
63 "sizzle": "2.3.9",
64 "strip-json-comments": "2.0.1",
65 "testswarm": "1.1.2",
66 "uglify-js": "3.4.7"
67 },
68 "scripts": {
69 "build": "npm install && grunt",
70 "start": "grunt watch",
71 "test:browserless": "grunt && grunt test:slow",
72 "test:browser": "grunt && grunt karma:main",
73 "test:amd": "grunt && grunt karma:amd",
74 "test:no-deprecated": "grunt test:prepare && grunt custom:-deprecated && grunt karma:main",
75 "test:no-sizzle": "grunt test:prepare && grunt custom:-sizzle && grunt karma:main",
76 "test:slim": "grunt test:prepare && grunt custom:slim && grunt karma:main",
77 "test": "npm run test:slim && npm run test:no-deprecated && npm run test:no-sizzle && grunt && grunt test:slow && grunt karma:main && grunt karma:amd",
78 "jenkins": "npm run test:browserless"
79 },
80 "commitplease": {
81 "nohook": true,
82 "components": [
83 "Docs",
84 "Tests",
85 "Build",
86 "Support",
87 "Release",
88 "Core",
89 "Ajax",
90 "Attributes",
91 "Callbacks",
92 "CSS",
93 "Data",
94 "Deferred",
95 "Deprecated",
96 "Dimensions",
97 "Effects",
98 "Event",
99 "Manipulation",
100 "Offset",
101 "Queue",
102 "Selector",
103 "Serialize",
104 "Traversing",
105 "Wrap"
106 ],
107 "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
108 "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
109 },
110 "husky": {
111 "hooks": {
112 "commit-msg": "commitplease .git/COMMIT_EDITMSG",
113 "pre-commit": "grunt lint:newer qunit_fixture"
114 }
115 }
116}