aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: f0827b7593ecfef15b4b2247d3f07c5dbe664cd1 (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
  "name": "jquery",
  "title": "jQuery",
  "description": "JavaScript library for DOM operations",
  "version": "4.0.0-beta.2",
  "type": "module",
  "exports": {
    ".": {
      "node": {
        "import": "./dist-module/wrappers/jquery.node-module-wrapper.js",
        "default": "./dist/jquery.js"
      },
      "module": {
        "import": "./dist-module/jquery.module.js",
        "default": "./dist/wrappers/jquery.bundler-require-wrapper.js"
      },
      "import": "./dist-module/jquery.module.js",
      "default": "./dist/jquery.js"
    },
    "./slim": {
      "node": {
        "import": "./dist-module/wrappers/jquery.node-module-wrapper.slim.js",
        "default": "./dist/jquery.slim.js"
      },
      "module": {
        "import": "./dist-module/jquery.slim.module.js",
        "default": "./dist/wrappers/jquery.bundler-require-wrapper.slim.js"
      },
      "import": "./dist-module/jquery.slim.module.js",
      "default": "./dist/jquery.slim.js"
    },
    "./factory": {
      "node": "./dist/jquery.factory.js",
      "module": "./dist-module/jquery.factory.module.js",
      "import": "./dist-module/jquery.factory.module.js",
      "default": "./dist/jquery.factory.js"
    },
    "./factory-slim": {
      "node": "./dist/jquery.factory.slim.js",
      "module": "./dist-module/jquery.factory.slim.module.js",
      "import": "./dist-module/jquery.factory.slim.module.js",
      "default": "./dist/jquery.factory.slim.js"
    },
    "./src/*.js": "./src/*.js"
  },
  "main": "dist/jquery.js",
  "scripts": {
    "authors:check": "node --input-type=module -e \"import { checkAuthors } from './build/release/authors.js'; checkAuthors()\"",
    "authors:update": "node --input-type=module -e \"import { updateAuthors } from './build/release/authors.js'; updateAuthors()\"",
    "babel:tests": "babel test/data/core/jquery-iterability-transpiled-es6.js --out-file test/data/core/jquery-iterability-transpiled.js",
    "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:dev": "eslint --cache .",
    "lint:json": "jsonlint --quiet package.json",
    "lint": "concurrently -r \"npm:lint:dev\" \"npm:lint:json\"",
    "npmcopy": "node build/tasks/npmcopy.js",
    "prepare": "husky",
    "pretest": "npm run qunit-fixture && npm run babel:tests && npm run npmcopy",
    "qunit-fixture": "node build/tasks/qunit-fixture.js",
    "release": "release-it",
    "release:cdn": "node build/release/cdn.js",
    "release:clean": "rimraf tmp changelog.html contributors.html",
    "release:dist": "node build/release/dist.js",
    "release:verify": "node build/release/verify.js",
    "start": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles({ watch: true })\"",
    "test:bundlers": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js",
    "test:browser": "npm run pretest && npm run build:main && npm run test:unit -- -b chrome -b firefox -h",
    "test:browserless": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js && node build/tasks/node_smoke_tests.js && node build/tasks/promises_aplus_tests.js && npm run test:unit -- -b jsdom -m basic",
    "test:jsdom": "npm run pretest && npm run build:main && npm run test:unit -- -b jsdom -m basic",
    "test:node_smoke_tests": "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js",
    "test:promises_aplus": "npm run build:main && node build/tasks/promises_aplus_tests.js",
    "test:chrome": "npm run pretest && npm run build:main && npm run test:unit -- -v -b chrome -h",
    "test:edge": "npm run pretest && npm run build:main && npm run test:unit -- -v -b edge -h",
    "test:firefox": "npm run pretest && npm run build:main && npm run test:unit -- -v -b firefox -h",
    "test:ie": "npm run pretest && npm run build:main && npm run test:unit -- -v -b ie",
    "test:safari": "npm run pretest && npm run build:main && npm run test:unit -- -b safari",
    "test:server": "node test/runner/server.js",
    "test:esm": "npm run pretest && npm run build:main && npm run test:unit -- --esm -h",
    "test:no-deprecated": "npm run pretest && npm run build -- -e deprecated && npm run test:unit -- -h",
    "test:selector-native": "npm run pretest && npm run build -- -e selector && npm run test:unit -- -h",
    "test:slim": "npm run pretest && npm run build -- --slim && npm run test:unit -- -h",
    "test:unit": "node test/runner/command.js",
    "test": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:esm && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native"
  },
  "homepage": "https://jquery.com",
  "author": {
    "name": "OpenJS Foundation and other contributors",
    "url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jquery/jquery.git"
  },
  "keywords": [
    "jquery",
    "javascript",
    "browser",
    "library"
  ],
  "bugs": {
    "url": "https://github.com/jquery/jquery/issues"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "7.24.8",
    "@babel/core": "7.24.9",
    "@babel/plugin-transform-for-of": "7.24.7",
    "@prantlf/jsonlint": "14.0.3",
    "@rollup/plugin-commonjs": "26.0.1",
    "@rollup/plugin-node-resolve": "15.2.3",
    "@swc/core": "1.7.0",
    "@types/selenium-webdriver": "4.1.24",
    "archiver": "7.0.1",
    "bootstrap": "5.3.3",
    "browserstack-local": "1.5.5",
    "chalk": "5.3.0",
    "colors": "1.4.0",
    "commitplease": "3.2.0",
    "concurrently": "8.2.2",
    "core-js-bundle": "3.37.1",
    "cross-env": "7.0.3",
    "diff": "5.2.0",
    "eslint": "8.57.0",
    "eslint-config-jquery": "3.0.2",
    "eslint-plugin-import": "2.29.1",
    "exit-hook": "4.0.0",
    "globals": "15.8.0",
    "husky": "9.1.1",
    "jsdom": "24.1.1",
    "marked": "13.0.2",
    "multiparty": "4.2.3",
    "native-promise-only": "0.8.1",
    "promises-aplus-tests": "npm:@mgol/promises-aplus-tests@2.1.2-mgol.1",
    "qunit": "2.21.1",
    "raw-body": "2.5.2",
    "release-it": "17.6.0",
    "requirejs": "2.3.7",
    "rimraf": "6.0.1",
    "rollup": "4.22.4",
    "selenium-webdriver": "4.23.0",
    "sinon": "9.2.4",
    "webpack": "5.94.0",
    "yargs": "17.7.2"
  },
  "commitplease": {
    "nohook": true,
    "components": [
      "Docs",
      "Tests",
      "Build",
      "Support",
      "Release",
      "Core",
      "Ajax",
      "Attributes",
      "Callbacks",
      "CSS",
      "Data",
      "Deferred",
      "Deprecated",
      "Dimensions",
      "Effects",
      "Event",
      "Manipulation",
      "Offset",
      "Queue",
      "Selector",
      "Serialize",
      "Traversing",
      "Wrap"
    ],
    "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
    "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
  }
}