-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 963 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 963 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
27
28
29
30
31
32
33
{
"name": "bradcoffield.github.io",
"version": "1.0.0",
"description": "",
"main": ".eleventy.js",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"eleventy-plugin-sass": "^1.1.1",
"npm-run-all": "^4.1.5",
"sass": "^1.26.11",
"striptags": "^3.1.1"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1"
},
"scripts": {
"sass": "sass --style=compressed src/css/main.scss src/css/main.css",
"watch:eleventy": "eleventy --serve",
"watch:sass": "npm run sass -- --watch",
"start": "npm-run-all sass --parallel watch:*",
"build": "npm run sass && eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BradCoffield/BradCoffield.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BradCoffield/BradCoffield.github.io/issues"
},
"homepage": "https://github.com/BradCoffield/BradCoffield.github.io#readme"
}