-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
30 lines (30 loc) · 1.2 KB
/
package.json
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
{
"name": "syntaxhighlighter",
"version": "3.7.0",
"description": "Easily post syntax-highlighted code to your WordPress site without having to modify the code at all.",
"homepage": "https://alex.blog/wordpress-plugins/syntaxhighlighter/",
"author": "Alex Mills (Viper007Bond)",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/Viper007Bond/syntaxhighlighter.git"
},
"bugs": {
"url": "https://github.com/Viper007Bond/syntaxhighlighter/issues"
},
"scripts": {
"start": "wp-scripts start",
"build": "npm run build:assets && npm run archive",
"build:assets": "wp-scripts build && npm run create-dist",
"create-dist": "mkdir -p dist && mv build/index.js dist/blocks.build.js && mv build/index.css dist/blocks.editor.build.css && mv build/style-index.css dist/blocks.style.build.css",
"distclean": "rm -rf node_modules && rm -rf dist && rm -rf build",
"archive": "composer archive --file=$npm_package_name --format=zip"
},
"dependencies": {
"@wordpress/escape-html": "^2.46.0",
"@wordpress/create-block": "^4.30.0",
"@wordpress/scripts": "^26.17.0",
"lodash.unescape": "^4.0.1",
"lodash.flow": "^3.5.0"
}
}