aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 72d2e1c8fd915c657c135a853363144a9549c481 (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
{
  "name": "jquery",
  "title": "jQuery",
  "description": "JavaScript library for DOM operations",
  "version": "3.7.2-pre",
  "main": "dist/jquery.js",
  "scripts": {
    "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 -e \"require('./build/tasks/build.js').buildDefaultFiles()\"",
    "build:main": "node -e \"require('./build/tasks/build.js').build()\"",
    "jenkins": "npm run pretest && npm run test:browserless",
    "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 install",
    "pretest": "npm run qunit-fixture && npm run babel:tests && npm run npmcopy",
    "qunit-fixture": "node build/tasks/qunit-fixture.js",
    "start": "nodemon --watch src -x \"npm run build:all\"",
    "test:browserless": "npm run test:node_smoke_tests && npm run test:promises_aplus && npm run test:jsdom",
    "test:browser": "npm run build:all && grunt karma:main",
    "test:amd": "npm run build:main && grunt karma:amd",
    "test:jsdom": "npm run build:main && grunt test:jsdom",
    "test:no-deprecated": "npm run build -- -e deprecated && grunt karma:main",
    "test:selector-native": "npm run build -- -e selector && grunt karma:main",
    "test:slim": "npm run build -- --slim && grunt karma:main",
    "test:node_smoke_tests": "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": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:amd && 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.22.10",
    "@babel/core": "7.22.11",
    "@babel/plugin-transform-for-of": "7.22.5",
    "@prantlf/jsonlint": "14.0.3",
    "bootstrap": "5.3.0",
    "chalk": "5.3.0",
    "colors": "1.4.0",
    "commitplease": "3.2.0",
    "concurrently": "8.2.0",
    "core-js-bundle": "3.32.1",
    "eslint": "8.48.0",
    "eslint-config-jquery": "3.0.1",
    "express": "4.18.2",
    "globals": "13.20.0",
    "grunt": "1.5.3",
    "grunt-cli": "1.4.3",
    "grunt-git-authors": "3.2.0",
    "grunt-karma": "4.0.2",
    "husky": "8.0.3",
    "jsdom": "19.0.0",
    "karma": "6.4.1",
    "karma-browserstack-launcher": "1.6.0",
    "karma-chrome-launcher": "3.1.1",
    "karma-firefox-launcher": "2.1.2",
    "karma-ie-launcher": "1.0.0",
    "karma-jsdom-launcher": "12.0.0",
    "karma-qunit": "4.1.2",
    "karma-webkit-launcher": "2.1.0",
    "load-grunt-tasks": "5.1.0",
    "native-promise-only": "0.8.1",
    "nodemon": "3.0.1",
    "playwright-webkit": "1.30.0",
    "promises-aplus-tests": "2.1.2",
    "q": "1.5.1",
    "qunit": "2.9.2",
    "raw-body": "2.3.3",
    "requirejs": "2.3.6",
    "sinon": "2.3.7",
    "strip-json-comments": "2.0.1",
    "testswarm": "1.1.2",
    "uglify-js": "3.4.7",
    "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? [^#])"
  }
}