forked from jquery/jquery-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.71 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jquery-migrate",
"title": "jQuery Migrate",
"description": "Migrate older jQuery code to jQuery 3.0+",
"main": "dist/jquery-migrate.js",
"version": "3.3.2-pre",
"homepage": "https://github.com/jquery/jquery-migrate",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://openjsf.org"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/jquery-migrate.git"
},
"bugs": {
"url": "http://bugs.jquery.com/"
},
"license": "MIT",
"scripts": {
"build": "grunt default-no-test",
"test": "grunt test",
"ci": "grunt ci"
},
"peerDependencies": {
"jquery": ">=3 <4"
},
"devDependencies": {
"chalk": "4.0.0",
"commitplease": "3.2.0",
"eslint": "7.2.0",
"eslint-config-jquery": "3.0.0",
"eslint-plugin-import": "2.21.1",
"grunt": "1.1.0",
"grunt-cli": "1.3.2",
"grunt-compare-size": "0.4.2",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "23.0.0",
"grunt-karma": "4.0.0",
"gzip-js": "0.3.2",
"karma": "5.0.9",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-qunit": "4.1.1",
"load-grunt-tasks": "5.1.0",
"native-promise-only": "0.8.1",
"qunit": "2.10.0",
"rollup": "2.15.0",
"testswarm": "1.1.2"
},
"keywords": [
"jquery",
"javascript",
"browser",
"plugin",
"migrate"
],
"commitplease": {
"components": [
"Docs",
"Tests",
"Build",
"Release",
"Core",
"Ajax",
"Attributes",
"Callbacks",
"CSS",
"Data",
"Deferred",
"Deprecated",
"Dimensions",
"Effects",
"Event",
"Manipulation",
"Offset",
"Queue",
"Selector",
"Serialize",
"Traversing",
"Wrap"
]
}
}