-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 813 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 813 Bytes
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
{
"name": "cs-4720-internet-programming",
"description": "Code written for CS 4720",
"scripts": {
"start": "node server.js",
"serve": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy --input=. --output=_site",
"deploy": "npm run build && gh-pages -d _site"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morellam-dev/cs-4720-internet-programming.git"
},
"author": "morellam-dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/morellam-dev/cs-4720-internet-programming/issues"
},
"homepage": "https://github.com/morellam-dev/cs-4720-internet-programming#readme",
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"gh-pages": "^3.1.0"
}
}