-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 947 Bytes
/
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
{
"name": "js1024-mirror-puzzle",
"version": "1.0.0",
"description": "",
"main": "index.html",
"type": "module",
"scripts": {
"build": "node build.js",
"sync": "browser-sync -w --index index.watch.html",
"watch-js": "chokidar **/*.js -c 'node build.js'",
"dev": "npm-run-all --parallel watch-js sync",
"watch": "npm-run-all build dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burntcustard/js1024-mirror-puzzle.git"
},
"author": "burntcustard <burntcustard@gmail.com> (https://burnt.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/burntcustard/js1024-mirror-puzzle/issues"
},
"homepage": "https://github.com/burntcustard/js1024-mirror-puzzle#readme",
"devDependencies": {
"browser-sync": "^2.27.10",
"chokidar-cli": "^3.0.0",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"regpack": "^5.0.1",
"terser": "^5.14.1"
}
}