forked from jquery/jquery-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.67 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
{
"name": "jquery-migrate",
"title": "jQuery Migrate",
"description": "Migrate older jQuery code to jQuery 3.0+",
"main": "dist/jquery-migrate.js",
"version": "3.0.2-pre",
"homepage": "https://github.com/jquery/jquery-migrate",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/jquery-migrate/blob/master/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/jquery-migrate.git"
},
"bugs": {
"url": "http://bugs.jquery.com/"
},
"license": "MIT",
"scripts": {
"build": "grunt build",
"test": "grunt test",
"ci": "grunt ci"
},
"peerDependencies": {
"jquery": ">=3 <4"
},
"devDependencies": {
"chalk": "2.4.2",
"commitplease": "3.2.0",
"eslint-config-jquery": "2.0.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "21.0.0",
"grunt-git-authors": "3.2.0",
"grunt-karma": "3.0.2",
"karma": "4.1.0",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.1.0",
"karma-qunit": "3.1.2",
"jquery": "3.4.1",
"load-grunt-tasks": "5.0.0",
"qunit": "2.4.1",
"testswarm": "1.1.0"
},
"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"
]
}
}