UNPKG

2.27 kBJSONView Raw
1{
2 "name": "prismjs",
3 "version": "1.25.0",
4 "description": "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet.",
5 "main": "prism.js",
6 "style": "themes/prism.css",
7 "scripts": {
8 "benchmark": "node benchmark/benchmark.js",
9 "build": "gulp",
10 "start": "http-server -c-1",
11 "lint": "eslint . --cache",
12 "lint:fix": "npm run lint -- --fix",
13 "lint:ci": "eslint . --max-warnings 0",
14 "test:aliases": "mocha tests/aliases-test.js",
15 "test:core": "mocha tests/core/**/*.js",
16 "test:dependencies": "mocha tests/dependencies-test.js",
17 "test:examples": "mocha tests/examples-test.js",
18 "test:identifiers": "mocha tests/identifier-test.js",
19 "test:languages": "mocha tests/run.js",
20 "test:patterns": "mocha tests/pattern-tests.js",
21 "test:plugins": "mocha tests/plugins/**/*.js",
22 "test:runner": "mocha tests/testrunner-tests.js",
23 "test": "npm-run-all test:*"
24 },
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/PrismJS/prism.git"
28 },
29 "keywords": [
30 "prism",
31 "highlight"
32 ],
33 "author": "Lea Verou",
34 "license": "MIT",
35 "readmeFilename": "README.md",
36 "devDependencies": {
37 "@types/node-fetch": "^2.5.5",
38 "benchmark": "^2.1.4",
39 "chai": "^4.2.0",
40 "danger": "^10.5.0",
41 "del": "^4.1.1",
42 "docdash": "^1.2.0",
43 "eslint": "^7.22.0",
44 "eslint-plugin-jsdoc": "^32.3.0",
45 "eslint-plugin-regexp": "^1.0.0",
46 "gulp": "^4.0.2",
47 "gulp-concat": "^2.3.4",
48 "gulp-header": "^2.0.7",
49 "gulp-jsdoc3": "^3.0.0",
50 "gulp-rename": "^1.2.0",
51 "gulp-replace": "^1.0.0",
52 "gulp-uglify": "^3.0.1",
53 "gzip-size": "^5.1.1",
54 "htmlparser2": "^4.0.0",
55 "http-server": "^0.12.3",
56 "jsdom": "^13.0.0",
57 "mocha": "^6.2.0",
58 "node-fetch": "^2.6.0",
59 "npm-run-all": "^4.1.5",
60 "pump": "^3.0.0",
61 "refa": "^0.9.1",
62 "regexp-ast-analysis": "^0.2.4",
63 "regexpp": "^3.2.0",
64 "scslre": "^0.1.6",
65 "simple-git": "^1.107.0",
66 "webfont": "^9.0.0",
67 "yargs": "^13.2.2"
68 },
69 "jspm": {
70 "main": "prism",
71 "registry": "jspm",
72 "jspmPackage": true,
73 "format": "global",
74 "files": [
75 "components/**/*.js",
76 "plugins/**/*",
77 "themes/*.css",
78 "prism.js"
79 ]
80 }
81}