package.json 2.8 KB
Newer Older
Five-菜鸟级's avatar
init  
Five-菜鸟级 已提交
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
{
   "name": "@highlightjs/cdn-assets",
   "description": "Syntax highlighting with language autodetection. (pre-compiled CDN assets)",
   "keywords": [
      "highlight",
      "syntax"
   ],
   "homepage": "https://highlightjs.org/",
   "version": "11.0.1",
   "author": {
      "name": "Ivan Sagalaev",
      "email": "maniac@softwaremaniacs.org"
   },
   "contributors": [
      "Josh Goebel <hello@joshgoebel.com>",
      "Egor Rogov <e.rogov@postgrespro.ru>",
      "Vladimir Jimenez <me@allejo.io>",
      "Ivan Sagalaev <maniac@softwaremaniacs.org>",
      "Jeremy Hull <sourdrums@gmail.com>",
      "Oleg Efimov <efimovov@gmail.com>",
      "Gidi Meir Morris <gidi@gidi.io>",
      "Jan T. Sott <git@idleberg.com>",
      "Li Xuanji <xuanji@gmail.com>",
      "Marcos Cáceres <marcos@marcosc.com>",
      "Sang Dang <sang.dang@polku.io>"
   ],
   "bugs": {
      "url": "https://github.com/highlightjs/highlight.js/issues"
   },
   "license": "BSD-3-Clause",
   "repository": {
      "type": "git",
      "url": "git://github.com/highlightjs/highlight.js.git"
   },
   "scripts": {
      "mocha": "mocha",
      "lint": "eslint src/*.js src/lib/*.js demo/*.js",
      "lint-languages": "eslint --no-eslintrc -c .eslintrc.lang.js src/languages/**/*.js",
      "build_and_test": "npm run build && npm run test",
      "build_and_test_browser": "npm run build-browser && npm run test-browser",
      "build": "node ./tools/build.js -t node",
      "build-cdn": "node ./tools/build.js -t cdn",
      "build-browser": "node ./tools/build.js -t browser :common",
      "test": "mocha test",
      "test-markup": "mocha test/markup",
      "test-detect": "mocha test/detect",
      "test-browser": "mocha test/browser",
      "test-parser": "mocha test/parser"
   },
   "engines": {
      "node": ">=12.0.0"
   },
   "devDependencies": {
      "@rollup/plugin-commonjs": "^19.0.0",
      "@rollup/plugin-json": "^4.1.0",
      "@rollup/plugin-node-resolve": "^13.0.0",
      "@types/mocha": "^8.2.2",
      "@typescript-eslint/eslint-plugin": "^4.23.0",
      "@typescript-eslint/parser": "^4.23.0",
      "clean-css": "^5.0.1",
      "cli-table": "^0.3.1",
      "colors": "^1.1.2",
      "commander": "^7.0.0",
      "css": "^3.0.0",
      "deep-freeze-es6": "^1.4.1",
      "del": "^6.0.0",
      "dependency-resolver": "^2.0.1",
      "eslint": "^7.26.0",
      "eslint-config-standard": "^16.0.1",
      "eslint-plugin-import": "^2.22.1",
      "eslint-plugin-node": "^11.1.0",
      "eslint-plugin-promise": "^5.1.0",
      "glob": "^7.1.7",
      "glob-promise": "^4.0.1",
      "handlebars": "^4.7.6",
      "jsdom": "^16.6.0",
      "lodash": "^4.17.20",
      "mocha": "^8.4.0",
      "refa": "^0.4.1",
      "rollup": "^2.47.0",
      "should": "^13.2.3",
      "terser": "^5.7.0",
      "tiny-worker": "^2.3.0",
      "typescript": "^4.0.5"
   }
}