-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.41 KB
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
57
58
59
60
61
62
63
64
{
"name": "sass-a11ycolor",
"version": "2.0.8",
"description": "Generate the nearest accessible color with Sass.",
"scripts": {
"build:sass": "rm -rf ./dist/ && mkdir ./dist/ && cat ./src/* > dist/_index.scss",
"build:docs": "./node_modules/.bin/sassdoc ./dist/_index.scss docs --config=.sassdocrc",
"build": "npm run build:sass && npm run build:docs",
"test": "node ./test/_tester.js",
"watch": "watch 'npm run build' ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/sass-a11ycolor.git"
},
"keywords": [
"sass",
"accessible",
"colour",
"color"
],
"main": "dist",
"files": [
"dist"
],
"author": {
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "https://alexpage.dev"
},
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "hi@dominik-wilkowski.com",
"url": "https://dominik-wilkowski.com/"
},
{
"name": "Trevor Brennan",
"email": "t@trevorbrennan.com",
"url": "http://trevorbrennan.com/"
},
{
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "https://alexpage.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/sass-a11ycolor/issues"
},
"eyeglass": {
"name": "sass-versioning",
"exports": false
},
"devDependencies": {
"chalk": "^2.3.0",
"glob": "^7.1.2",
"node-sass": "^8.0.0",
"sassdoc": "^2.7.0",
"watch": "^1.0.2"
},
"dependencies": {}
}