-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@oddbird/blend",
"version": "0.2.4",
"title": "Blend",
"description": "New color formats, adjustments, and conversions in Sass",
"publishConfig": {
"access": "public"
},
"main": "index.scss",
"author": "Miriam Suzanne",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/blend.git"
},
"bugs": "https://github.com/oddbird/blend/issues",
"homepage": "https://www.oddbird.net/blend",
"keywords": [
"sass",
"scss",
"css",
"colors",
"design",
"design systems",
"CIE",
"Lab",
"sRGB",
"hwb",
"LCH"
],
"scripts": {
"json": "sass src/json.scss src/json.css",
"herman": "sassdoc sass/",
"docs": "yarn json; yarn herman",
"sass": "sass demo/style.scss demo/style.css",
"test": "mocha",
"commit": "yarn test; yarn docs; yarn sass"
},
"devDependencies": {
"mocha": "^10.2.0",
"sass": "^1.56.2",
"sass-true": "^7.0.0",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^5.0.0"
}
}