Mercurial
comparison third_party/highlight/package.json @ 173:827c6ac504cd hg-web
Merged in default here.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 18:59:10 -0800 |
| parents | 2db6253f355d |
| children |
comparison
equal
deleted
inserted
replaced
| 151:c033667da5f9 | 173:827c6ac504cd |
|---|---|
| 1 { | |
| 2 "name": "@highlightjs/cdn-assets", | |
| 3 "description": "Syntax highlighting with language autodetection. (pre-compiled CDN assets)", | |
| 4 "keywords": [ | |
| 5 "highlight", | |
| 6 "syntax" | |
| 7 ], | |
| 8 "homepage": "https://highlightjs.org/", | |
| 9 "version": "11.11.1", | |
| 10 "author": "Josh Goebel <[email protected]>", | |
| 11 "contributors": [ | |
| 12 "Josh Goebel <[email protected]>", | |
| 13 "Egor Rogov <[email protected]>", | |
| 14 "Vladimir Jimenez <[email protected]>", | |
| 15 "Ivan Sagalaev <[email protected]>", | |
| 16 "Jeremy Hull <[email protected]>", | |
| 17 "Oleg Efimov <[email protected]>", | |
| 18 "Gidi Meir Morris <[email protected]>", | |
| 19 "Jan T. Sott <[email protected]>", | |
| 20 "Li Xuanji <[email protected]>", | |
| 21 "Marcos Cáceres <[email protected]>", | |
| 22 "Sang Dang <[email protected]>" | |
| 23 ], | |
| 24 "bugs": { | |
| 25 "url": "https://github.com/highlightjs/highlight.js/issues" | |
| 26 }, | |
| 27 "license": "BSD-3-Clause", | |
| 28 "repository": { | |
| 29 "type": "git", | |
| 30 "url": "git://github.com/highlightjs/highlight.js.git" | |
| 31 }, | |
| 32 "sideEffects": [ | |
| 33 "./es/common.js", | |
| 34 "./lib/common.js", | |
| 35 "*.css", | |
| 36 "*.scss" | |
| 37 ], | |
| 38 "scripts": { | |
| 39 "mocha": "mocha", | |
| 40 "lint": "eslint src/*.js src/lib/*.js demo/*.js tools/**/*.js --ignore-pattern vendor", | |
| 41 "lint-languages": "eslint --no-eslintrc -c .eslintrc.lang.js src/languages/**/*.js", | |
| 42 "build_and_test": "npm run build && npm run test", | |
| 43 "build_and_test_browser": "npm run build-browser && npm run test-browser", | |
| 44 "build": "node ./tools/build.js -t node", | |
| 45 "build-cdn": "node ./tools/build.js -t cdn", | |
| 46 "build-browser": "node ./tools/build.js -t browser :common", | |
| 47 "devtool": "npx http-server", | |
| 48 "test": "mocha test", | |
| 49 "test-markup": "mocha test/markup", | |
| 50 "test-detect": "mocha test/detect", | |
| 51 "test-browser": "mocha test/browser", | |
| 52 "test-parser": "mocha test/parser" | |
| 53 }, | |
| 54 "engines": { | |
| 55 "node": ">=12.0.0" | |
| 56 }, | |
| 57 "devDependencies": { | |
| 58 "@colors/colors": "^1.6.0", | |
| 59 "@rollup/plugin-commonjs": "^28.0.1", | |
| 60 "@rollup/plugin-json": "^6.0.1", | |
| 61 "@rollup/plugin-node-resolve": "^15.3.0", | |
| 62 "@types/mocha": "^10.0.2", | |
| 63 "@typescript-eslint/eslint-plugin": "^7.15.0", | |
| 64 "@typescript-eslint/parser": "^7.15.0", | |
| 65 "clean-css": "^5.3.2", | |
| 66 "cli-table": "^0.3.1", | |
| 67 "commander": "^12.1.0", | |
| 68 "css": "^3.0.0", | |
| 69 "css-color-names": "^1.0.1", | |
| 70 "deep-freeze-es6": "^3.0.2", | |
| 71 "del": "^8.0.0", | |
| 72 "dependency-resolver": "^2.0.1", | |
| 73 "eslint": "^8.57.0", | |
| 74 "eslint-config-standard": "^17.1.0", | |
| 75 "eslint-plugin-import": "^2.28.1", | |
| 76 "eslint-plugin-node": "^11.1.0", | |
| 77 "eslint-plugin-promise": "^6.1.1", | |
| 78 "glob": "^8.1.0", | |
| 79 "glob-promise": "^6.0.5", | |
| 80 "handlebars": "^4.7.8", | |
| 81 "http-server": "^14.1.1", | |
| 82 "jsdom": "^25.0.1", | |
| 83 "lodash": "^4.17.20", | |
| 84 "mocha": "^11.0.1", | |
| 85 "refa": "^0.4.1", | |
| 86 "rollup": "^4.0.2", | |
| 87 "should": "^13.2.3", | |
| 88 "terser": "^5.21.0", | |
| 89 "tiny-worker": "^2.3.0", | |
| 90 "typescript": "^5.2.2", | |
| 91 "wcag-contrast": "^3.0.0" | |
| 92 } | |
| 93 } |