-
Notifications
You must be signed in to change notification settings - Fork 473
/
Copy pathpackage.json
91 lines (91 loc) · 2.12 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
87
88
89
90
91
{
"name": "jquery-migrate",
"title": "jQuery Migrate",
"description": "Migrate older jQuery code to jQuery 3.0+",
"main": "dist/jquery-migrate.js",
"version": "3.5.3-pre",
"type": "module",
"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": "node build/tasks/build-default.js",
"lint": "eslint --cache .",
"npmcopy": "node build/tasks/npmcopy.js",
"prepare": "husky",
"pretest": "npm run npmcopy && npm run build && npm run lint",
"start": "npm run npmcopy && node build/tasks/build-watch.js",
"test:browser": "npm run pretest && npm run test:unit -- -b chrome -b firefox --headless",
"test:ie": "npm run pretest && npm run test:unit -- -v -b ie",
"test:node_smoke_tests": "npm run pretest && node test/node_smoke_tests/smoke_tests.cjs",
"test:safari": "npm run pretest && npm run test:unit -- -v -b safari",
"test:server": "jtr serve",
"test:unit": "jtr",
"test": "npm run test:node_smoke_tests && npm run test:browser"
},
"peerDependencies": {
"jquery": ">=3 <4"
},
"devDependencies": {
"chalk": "5.4.1",
"commitplease": "3.2.0",
"enquirer": "2.4.1",
"eslint": "8.57.0",
"eslint-config-jquery": "3.0.2",
"eslint-plugin-import": "2.29.1",
"globals": "15.3.0",
"husky": "9.0.11",
"jquery": "3.7.1",
"jquery-test-runner": "0.2.1",
"jsdom": "24.1.0",
"native-promise-only": "0.8.1",
"qunit": "2.21.0",
"rollup": "4.22.4",
"sinon": "7.5.0",
"uglify-js": "3.9.4"
},
"keywords": [
"jquery",
"javascript",
"browser",
"plugin",
"migrate"
],
"commitplease": {
"nohook": true,
"components": [
"Docs",
"Tests",
"Build",
"Release",
"Core",
"Ajax",
"Attributes",
"Callbacks",
"CSS",
"Data",
"Deferred",
"Deprecated",
"Dimensions",
"Effects",
"Event",
"Manipulation",
"Offset",
"Queue",
"Selector",
"Serialize",
"Traversing",
"Wrap"
]
}
}