-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.45 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
{
"name": "digital-land.github.io",
"version": "1.0.0",
"description": "[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/digital-land/digital-land.github.io/blob/main/LICENSE) [![Build digital-land.github.io](https://github.com/digital-land/digital-land.github.io/actions/workflows/build.yml/badge.svg)](https://github.com/digital-land/digital-land.github.io/actions/workflows/build.yml)",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"serve": "run-p serve:* watch:docs",
"serve:server": "http-server ./docs",
"serve:sync": "browser-sync start --proxy '127.0.0.1:8080' --files './docs/'",
"clean:docs": "make clean",
"build:docs": "make render",
"watch:docs": "chokidar './content/*.html' './content/**' './templates/**/*.*' './templates/*.*' -c 'run-s clean:docs build:docs'",
"start": "run-s clean:docs build:docs serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-land/digital-land.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/digital-land/digital-land.github.io/issues"
},
"homepage": "https://github.com/digital-land/digital-land.github.io#readme",
"devDependencies": {
"browser-sync": "^2.27.10",
"chokidar-cli": "^3.0.0",
"http-server": "^14.1.1",
"install": "^0.13.0",
"npm": "^8.19.2",
"npm-run-all": "^4.1.5"
}
}