-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 865 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 865 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
{
"name": "clearbold.com",
"version": "1.0.0",
"description": "clearbold.com",
"main": "index.js",
"scripts": {
"sass": "sass --style=compressed src/ui/css/styles.scss src/ui/css/styles.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/clearbold/clearbold.com.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/clearbold/clearbold.com/issues"
},
"homepage": "https://github.com/clearbold/clearbold.com#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"sass": "^1.30.0"
}
}