UNPKG

3.27 kBJSONView Raw
1{
2 "name": "jquery",
3 "title": "jQuery",
4 "description": "JavaScript library for DOM operations",
5 "version": "3.5.1",
6 "main": "dist/jquery.js",
7 "homepage": "https://jquery.com",
8 "author": {
9 "name": "JS Foundation and other contributors",
10 "url": "https://github.com/jquery/jquery/blob/3.5.1/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.3.3",
29 "@babel/plugin-transform-for-of": "7.2.0",
30 "commitplease": "3.2.0",
31 "core-js": "2.6.5",
32 "eslint-config-jquery": "2.0.0",
33 "grunt": "1.0.3",
34 "grunt-babel": "8.0.0",
35 "grunt-cli": "1.3.2",
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": "1.1.0",
42 "grunt-karma": "3.0.1",
43 "grunt-newer": "1.3.0",
44 "grunt-npmcopy": "0.1.0",
45 "gzip-js": "0.3.2",
46 "husky": "1.3.1",
47 "insight": "0.10.1",
48 "jsdom": "13.2.0",
49 "karma": "4.0.1",
50 "karma-browserstack-launcher": "1.4.0",
51 "karma-chrome-launcher": "2.2.0",
52 "karma-firefox-launcher": "1.1.0",
53 "karma-ie-launcher": "1.0.0",
54 "karma-jsdom-launcher": "7.1.0",
55 "karma-qunit": "3.0.0",
56 "load-grunt-tasks": "4.0.0",
57 "native-promise-only": "0.8.1",
58 "promises-aplus-tests": "2.1.2",
59 "q": "1.5.1",
60 "qunit": "2.9.2",
61 "raw-body": "2.3.3",
62 "requirejs": "2.3.6",
63 "sinon": "2.3.7",
64 "sizzle": "2.3.5",
65 "strip-json-comments": "2.0.1",
66 "testswarm": "1.1.0",
67 "uglify-js": "3.4.7"
68 },
69 "scripts": {
70 "build": "npm install && grunt",
71 "start": "grunt watch",
72 "test:browserless": "grunt && grunt test:slow",
73 "test:browser": "grunt && grunt karma:main",
74 "test:amd": "grunt && grunt karma:amd",
75 "test:no-deprecated": "grunt test:prepare && grunt custom:-deprecated && grunt karma:main",
76 "test:no-sizzle": "grunt test:prepare && grunt custom:-sizzle && grunt karma:main",
77 "test:slim": "grunt test:prepare && grunt custom:slim && grunt karma:main",
78 "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",
79 "jenkins": "npm run test:browserless"
80 },
81 "commitplease": {
82 "nohook": true,
83 "components": [
84 "Docs",
85 "Tests",
86 "Build",
87 "Support",
88 "Release",
89 "Core",
90 "Ajax",
91 "Attributes",
92 "Callbacks",
93 "CSS",
94 "Data",
95 "Deferred",
96 "Deprecated",
97 "Dimensions",
98 "Effects",
99 "Event",
100 "Manipulation",
101 "Offset",
102 "Queue",
103 "Selector",
104 "Serialize",
105 "Traversing",
106 "Wrap"
107 ],
108 "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
109 "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
110 },
111 "husky": {
112 "hooks": {
113 "commit-msg": "node node_modules/commitplease",
114 "pre-commit": "grunt lint:newer qunit_fixture"
115 }
116 }
117}