forked from jquery/jquery-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.39 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
92
93
94
95
96
97
98
99
{
"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 -h",
"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": "node test/runner/server.js",
"test:unit": "node test/runner/command.js",
"test": "npm run test:node_smoke_tests && npm run test:browser"
},
"peerDependencies": {
"jquery": ">=3 <4"
},
"devDependencies": {
"@types/selenium-webdriver": "4.1.22",
"body-parser": "1.20.3",
"browserstack-local": "1.5.5",
"chalk": "5.3.0",
"commitplease": "3.2.0",
"diff": "5.2.0",
"enquirer": "2.4.1",
"eslint": "8.57.0",
"eslint-config-jquery": "3.0.2",
"eslint-plugin-import": "2.29.1",
"exit-hook": "4.0.0",
"express": "4.21.1",
"express-body-parser-error-handler": "1.0.7",
"globals": "15.3.0",
"husky": "9.0.11",
"jquery": "3.7.1",
"jsdom": "24.1.0",
"native-promise-only": "0.8.1",
"qunit": "2.21.0",
"rollup": "4.22.4",
"selenium-webdriver": "4.21.0",
"sinon": "7.5.0",
"uglify-js": "3.9.4",
"yargs": "17.7.2"
},
"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"
]
}
}