-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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": "openll-website",
"private": true,
"version": "0.1.0",
"description": "Website for openll.org",
"author": "CG Internals",
"homepage": "https://cginternals.com",
"bugs": {
"email": "contact@cginternals.com",
"url": "https://gitlab.cginternals.com/web/openll/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.cginternals.com/web/openll.git"
},
"contributors": [
{
"name": "Daniel Limberger",
"email": "daniel.limberger@cginternals.com"
},
{
"name": "Willy Scheibel",
"email": "willy.scheibel@cginternals.com"
}
],
"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"
}
}