-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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": "cascading-color-systems",
"version": "0.1.0-beta.17",
"description": "generate dynamic color palettes with custom properties",
"title": "Cascading Colors",
"main": "dist.js",
"module": "index.js",
"homepage": "https://www.oddbird.net/cascading-colors/",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/cascading-color-system.git"
},
"author": "Miriam Suzanne <[email protected]>",
"contributors": [
"Jonny Gerig Meyer <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-umd": "^7.25.9",
"cssremedy": "^0.1.0-beta.2",
"sass": "^1.80.6",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.1"
},
"scripts": {
"build-sass": "sass sass/_output.scss css/ccs.css",
"build-docs": "sassdoc sass/",
"build-js": "yarn babel index.js --out-file dist.js",
"build-demo-styles": "sass demo/sass/styles.scss demo/css/styles.css",
"build-demo-js": "mkdir -p demo/js && cp dist.js demo/js/",
"build-demo": "yarn build-js && yarn build-demo-js && yarn build-demo-styles",
"build": "yarn build-sass && yarn build-docs && yarn build-demo",
"commit": "yarn build",
"watch": "sass --watch demo/sass/:demo/css/"
},
"files": [
"css/**/*.css",
"sass/**/*.scss",
"_index.scss",
"index.js",
"dist.js"
],
"packageManager": "[email protected]"
}