-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "Syntax Highlighting",
"version": "1.0.0",
"description": "Syntax Highlighting by Atelierbram",
"author": {
"name": "Atelierbram",
"url": "https://atelierbramdehaan.nl"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atelierbram/syntax-highlighting"
},
"scripts": {
"js": "rollup --config",
"css": "node sass.js",
"copy": "recursive-copy 'source/copy' 'dist'",
"build-dirty": "npm-run-all -p js css svg img copy",
"build": "npm-run-all -s build-dirty",
"watch-css": "chokidar './source/_assets/sass/**/*.scss' -c 'npm run css'",
"watch-js": "chokidar './source/_assets/js/**/*.js' -c 'npm run js'",
"watch-copy": "chokidar './source/copy/**/*.*' -c 'npm run copy'",
"watch": "npm-run-all -p build watch-css watch-js watch-copy"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"npm-run-all": "^4.1.5",
"recursive-fs": "^2.1.0",
"rollup": "^3.13.0",
"sass": "^1.58.0"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.0"
}
}