-
Notifications
You must be signed in to change notification settings - Fork 475
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.49 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.49 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "jquery-migrate",
"title": "jQuery Migrate",
"description": "Migrate older jQuery code to jQuery 4.x",
"version": "4.0.3-pre",
"type": "module",
"exports": {
"node": {
"import": "./dist-module/wrappers/jquery-migrate.node-module-wrapper.js",
"default": "./dist/jquery-migrate.js"
},
"module": {
"import": "./dist-module/jquery-migrate.module.js",
"default": "./dist/wrappers/jquery-migrate.bundler-require-wrapper.js"
},
"import": "./dist-module/jquery-migrate.module.js",
"default": "./dist/jquery-migrate.js"
},
"main": "dist/jquery-migrate.js",
"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/command.js",
"build:all": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles()\"",
"build:clean": "rimraf --glob dist/*.{js,map} --glob dist-module/*.{js,map}",
"build:main": "node --input-type=module -e \"import { build } from './build/tasks/build.js'; build()\"",
"lint": "eslint --cache .",
"npmcopy": "node build/tasks/npmcopy.js",
"prepare": "husky",
"pretest": "npm run npmcopy",
"start": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles({ watch: true })\"",
"test:browser": "npm run pretest && npm run build:all && npm run test:unit -- -b chrome -b firefox --headless",
"test:browserless": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js && node test/node_smoke_tests/node_smoke_tests.cjs",
"test:ie": "npm run pretest && npm run build:all && npm run test:unit -- -v -b ie",
"test:bundlers": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js",
"test:node_smoke_tests": "npm run pretest && npm run build:all && node test/node_smoke_tests/node_smoke_tests.cjs",
"test:safari": "npm run pretest && npm run build:all && npm run test:unit -- -v -b safari",
"test:server": "jtr serve",
"test:esm": "npm run pretest && npm run build:main && npm run test:unit -- -f plugin=esmodules --headless ",
"test:unit": "jtr",
"test": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:esm"
},
"peerDependencies": {
"jquery": ">=4 <5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"chalk": "5.6.2",
"commitplease": "3.2.0",
"enquirer": "2.4.1",
"eslint": "8.57.1",
"eslint-config-jquery": "3.0.2",
"eslint-plugin-import": "2.32.0",
"globals": "17.4.0",
"husky": "9.1.7",
"jquery": "4.0.0",
"jquery-test-runner": "0.3.0",
"jsdom": "29.0.1",
"native-promise-only": "0.8.1",
"qunit": "2.25.0",
"rollup": "4.59.1",
"sinon": "9.2.4",
"uglify-js": "3.19.3",
"webpack": "5.105.4",
"yargs": "18.0.0"
},
"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"
]
}
}