-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1018 Bytes
/
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
{
"name": "themightyfines",
"version": "0.1.0",
"description": "A Front Range Bluegrass, Country and Honky Tonk band",
"main": "index.js",
"scripts": {
"start": "npm run build:css:watch & npm run build:site:watch",
"deploy": "npm run build:css && npm run build:site",
"build:site": "eleventy --config=.eleventy.js",
"build:site:watch": "eleventy --serve --watch --config=.eleventy.js",
"build:css": "sass src/scss:dist --style=compressed",
"build:css:watch": "sass --style=compressed --watch src/scss:dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Ollo/themightyfines.git"
},
"keywords": [
"bluegrass",
"honky-tonk",
"country"
],
"author": "Joshua Ray <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Ollo/themightyfines/issues"
},
"homepage": "https://github.com/Ollo/themightyfines#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"sass": "^1.49.0"
}
}