-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
31
32
33
34
35
36
37
38
39
{
"name": "advanced-mark.js-playground",
"version": "2.4.0",
"description": "Help to get familiar with advanced-mark.js, generate code, play with custom code and HTML.",
"keywords": [
"playground",
"advanced",
"mark.js",
"markjs",
"highlight"
],
"author": {
"name": "angezid",
"url": "https://github.com/angezid"
},
"bugs": {
"url": "https://github.com/angezid/advanced-mark.js-playground/issues"
},
"homepage": "https://github.com/angezid/advanced-mark.js-playground#readme",
"license": "MIT",
"dependencies": {
"http-server": "^14.1.1",
"jquery": "^3.6.0",
"jquery-powertip": "^1.3.2",
"advanced-mark.js": "^2.5.0"
},
"scripts": {
"build": "npm run copyFiles && npm run updateVersion",
"dev": "npm run copyFilesDev",
"copyFiles": "copy-files-from-to",
"updateVersion": "node update-version.js",
"copyFilesDev": "copy-files-from-to --mode development",
"server": "http-server -d -c-1 -o build/index.html",
"serverDev": "http-server -d -c-1 -o src/index.html"
},
"devDependencies": {
"copy-files-from-to": "^3.8.0"
}
}