-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
{
"name": "@darekkay/styles",
"description": "My shared CSS styles",
"version": "5.7.1",
"author": "Darek Kay <[email protected]> (https://darekkay.com/)",
"bugs": {
"url": "https://github.com/darekkay/darekkay-styles/issues",
"email": "[email protected]"
},
"dependencies": {
"@types/tailwindcss": "2.2.4"
},
"devDependencies": {
"@darekkay/gulp": "4.1.0",
"@darekkay/logger": "4.1.0",
"a11y-contrast": "3.0.0",
"ejs": "3.1.10",
"jest": "29.7.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"onecolor": "4.1.0",
"prettier": "3.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src",
"dist",
"tailwind.config.js"
],
"homepage": "https://darekkay.com/style-guide/",
"keywords": [
"css",
"darekkay",
"styles"
],
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/darekkay/darekkay-styles.git"
},
"scripts": {
"build": "run-s clean build:**",
"build:colors": "node internals/scripts/list-colors/list-colors.js",
"build:gulp": "gulp build",
"ci": "run-s --continue-on-error lint test",
"clean": "gulp clean",
"format": "prettier --write .",
"lint": "run-s --continue-on-error lint:*",
"lint:colors": "npm run build:colors && a11y-contrast public/color-palette.json --min-ratio-3=40 --min-ratio-4.5=50 --min-ratio-7=70",
"lint:themes": "node internals/scripts/verify-themes/verify-themes.js",
"test": "jest"
}
}