-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
40
41
{
"name": "cppassist-website",
"private": true,
"version": "0.1.0",
"description": "Website for cppassist.org",
"author": "CG Internals",
"homepage": "https://cginternals.com",
"bugs": {
"email": "[email protected]",
"url": "https://gitlab.cginternals.com/web/cppassist/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.cginternals.com/web/cppassist.git"
},
"contributors": [
{
"name": "Daniel Limberger",
"email": "[email protected]"
},
{
"name": "Willy Scheibel",
"email": "[email protected]"
}
],
"devDependencies": {
"glob": "~7.1.2",
"http-server": "~0.11.1",
"jstransformer-markdown-it": "~2.0.0",
"markdown-it-highlightjs": "~3.0.0",
"pug": "~2.0.1",
"query-string": "~5.1.0",
"rimraf": "~2.6.2"
},
"scripts": {
"build": "node pugconfig.js",
"build-watch": "node pugconfig.js --watch",
"cleanup": "rimraf ./_site",
"server": "http-server ./_site -a localhost -p 4000"
}
}