UNPKG

1.92 kBJSONView Raw
1{
2 "name": "prismjs",
3 "version": "1.22.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 "build": "gulp",
9 "test:aliases": "mocha tests/aliases-test.js",
10 "test:core": "mocha tests/core/**/*.js",
11 "test:dependencies": "mocha tests/dependencies-test.js",
12 "test:examples": "mocha tests/examples-test.js",
13 "test:identifiers": "mocha tests/identifier-test.js",
14 "test:languages": "mocha tests/run.js",
15 "test:patterns": "mocha tests/pattern-tests.js",
16 "test:plugins": "mocha tests/plugins/**/*.js",
17 "test:runner": "mocha tests/testrunner-tests.js",
18 "test": "npm run test:runner && npm run test:core && npm run test:dependencies && npm run test:languages && npm run test:plugins && npm run test:aliases && npm run test:patterns && npm run test:examples && npm run test:identifiers"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/PrismJS/prism.git"
23 },
24 "keywords": [
25 "prism",
26 "highlight"
27 ],
28 "author": "Lea Verou",
29 "license": "MIT",
30 "readmeFilename": "README.md",
31 "optionalDependencies": {
32 "clipboard": "^2.0.0"
33 },
34 "devDependencies": {
35 "chai": "^4.2.0",
36 "del": "^4.1.1",
37 "docdash": "^1.2.0",
38 "gulp": "^4.0.2",
39 "gulp-concat": "^2.3.4",
40 "gulp-header": "^2.0.7",
41 "gulp-jsdoc3": "^3.0.0",
42 "gulp-rename": "^1.2.0",
43 "gulp-replace": "^1.0.0",
44 "gulp-uglify": "^3.0.1",
45 "htmlparser2": "^4.0.0",
46 "jsdom": "^13.0.0",
47 "mocha": "^6.2.0",
48 "pump": "^3.0.0",
49 "regexpp": "^2.0.1",
50 "simple-git": "^1.107.0",
51 "yargs": "^13.2.2"
52 },
53 "jspm": {
54 "main": "prism",
55 "registry": "jspm",
56 "jspmPackage": true,
57 "format": "global",
58 "files": [
59 "components/**/*.js",
60 "plugins/**/*",
61 "themes/*.css",
62 "prism.js"
63 ]
64 }
65}