-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
66 lines (66 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jquery",
"title": "jQuery",
"description": "JavaScript library for DOM operations",
"version": "4.0.0-beta.2",
"type": "module",
"exports": {
".": {
"node": {
"import": "./dist-module/wrappers/jquery.node-module-wrapper.js",
"default": "./dist/jquery.js"
},
"module": {
"import": "./dist-module/jquery.module.js",
"default": "./dist/wrappers/jquery.bundler-require-wrapper.js"
},
"import": "./dist-module/jquery.module.js",
"default": "./dist/jquery.js"
},
"./slim": {
"node": {
"import": "./dist-module/wrappers/jquery.node-module-wrapper.slim.js",
"default": "./dist/jquery.slim.js"
},
"module": {
"import": "./dist-module/jquery.slim.module.js",
"default": "./dist/wrappers/jquery.bundler-require-wrapper.slim.js"
},
"import": "./dist-module/jquery.slim.module.js",
"default": "./dist/jquery.slim.js"
},
"./factory": {
"node": "./dist/jquery.factory.js",
"module": "./dist-module/jquery.factory.module.js",
"import": "./dist-module/jquery.factory.module.js",
"default": "./dist/jquery.factory.js"
},
"./factory-slim": {
"node": "./dist/jquery.factory.slim.js",
"module": "./dist-module/jquery.factory.slim.module.js",
"import": "./dist-module/jquery.factory.slim.module.js",
"default": "./dist/jquery.factory.slim.js"
},
"./src/*.js": "./src/*.js"
},
"main": "dist/jquery.js",
"homepage": "https://jquery.com",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/jquery/jquery/blob/4.0.0-beta.2/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/jquery/jquery.git"
},
"keywords": [
"jquery",
"javascript",
"browser",
"library"
],
"bugs": {
"url": "https://github.com/jquery/jquery/issues"
},
"license": "MIT"
}