forked from syntaxhighlighter/syntaxhighlighter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.43 KB
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
{
"name": "@magiclab/syntaxhighlighter",
"version": "4.0.1",
"author": {
"name": "Alex Gorbatchev",
"url": "https://github.com/alexgorbatchev"
},
"scripts": {
"test": "jest",
"test:all": "npm run test:setup && npm run test",
"test:debug": "node --inspect --inspect-brk ./node_modules/.bin/jest --no-cache --no-watchman --runInBand",
"test:setup": "gulp build --output=tests/build-dest --theme=tests/build-source/theme.scss --brushes=tests/fixtures/test_brush_v4.js,tests/fixtures/html_test_brush_v3.js,tests/fixtures/test_brush_v4_es6.js && gulp build --compat --output=tests/build-dest-compat --theme=tests/build-source/theme.scss",
"build": "gulp build --brushes all --theme=packages/theme-default/theme.scss",
"prettier": "npx prettier --write './**/*.{js,jsx,ts,tsx,scss}'",
"lint": "eslint . --cache --quiet --fix"
},
"main": "./dist/syntaxhighlighter.js",
"repository": {
"type": "git",
"url": "https://github.com/syntaxhighlighter/syntaxhighlighter.git"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.4.0",
"@types/babel__core": "^7.1.9",
"@types/babel__preset-env": "^7.9.0",
"@types/bluebird": "^3.5.32",
"@types/cheerio": "^0.22.18",
"@types/domready": "^1.0.0",
"@types/ejs": "^2.7.0",
"@types/glob": "^7.1.2",
"@types/graceful-fs": "^4.1.3",
"@types/gulp": "^3.8.36",
"@types/gulp-help": "^3.0.27-alpha",
"@types/gulp-util": "^3.0.35",
"@types/js-beautify": "^1.11.0",
"@types/mkdirp": "^0.5.2",
"@types/node-sass": "^3.10.32",
"@types/ramda": "^0.27.6",
"@types/request": "^2.48.5",
"@types/rimraf": "^3.0.0",
"@types/sizzle": "^2.3.2",
"@types/webpack": "^4.41.18",
"@types/yargs": "^15.0.5",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.5",
"bluebird": "^3.0.5",
"brush-xml": "^4.0.0",
"cheerio": "^0.22.0",
"ejs": "^2.3.4",
"eslint": "^7.3.1",
"glob": "^6.0.1",
"gulp": "^3.8.10",
"gulp-help": "^1.6.1",
"gulp-util": "^3.0.7",
"jest": "^26.1.0",
"node-sass": "^4.9.3",
"ramda": "^0.18.0",
"raw-loader": "^0.5.1",
"request": "^2.51.0",
"rimraf": "^2.4.4",
"sizzle": "^2.3.5",
"songbird": "^1.0.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"yargs": "^3.30.0"
},
"dependencies": {
"domready": "^1.0.8"
},
"license": "MIT"
}