-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 KB
/
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
34
35
36
{
"name": "tints-and-shades",
"version": "4.0.0",
"description": "Easily make tints and shades that match the output of Chrome DevTools, Sass, Less, and PostCSS.",
"main": "index.js",
"scripts": {
"watch:readme": "nodemon --watch src/about.njk --watch build-readme.js --exec \"npm run build:readme\"",
"build:readme": "node build-readme.js",
"watch:css": "sass --watch src/scss:_site/css",
"build:css": "sass src/scss:_site/css",
"watch:11ty": "eleventy --serve",
"build:11ty": "eleventy",
"build": "npm run build:css && npm run build:11ty",
"start": "concurrently \"npm run watch:css\" \"npm run watch:readme\" \"npm run watch:11ty\"",
"deploy": "npm run build && gh-pages -d _site"
},
"keywords": [
"colors",
"hex",
"tints",
"shades",
"palettes",
"design"
],
"author": "Michael Edelstone <[email protected]> (https://michaeledelstone.com)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-dev-server": "^2.0.4",
"concurrently": "^9.0.1",
"gh-pages": "^6.1.1",
"nodemon": "^3.1.4",
"sass": "^1.78.0",
"turndown": "^7.2.0"
}
}