-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "colorable",
"version": "1.0.5",
"description": "Color palette combination contrast tester",
"main": "index.js",
"scripts": {
"clean": "rm -r demos & rm bundle.js & rm index.html",
"copy": "cp -r colorable/* . && rm -r colorable",
"webpack": "webpack --progress --colors",
"webpack-p": "webpack -p --progress --colors",
"prod": "npm run clean && npm run webpack-p && npm run copy",
"dev": "webpack-dev-server --progress --colors",
"start": "npm run dev"
},
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"color": "^0.7.3",
"lodash": "^3.1.0"
},
"devDependencies": {
"basscss": "^7.0.0-beta.2",
"classnames": "^2.1.2",
"colors.css": "^2.3.0",
"cssnext": "^1.6.0",
"json-loader": "^0.5.2",
"jsx-loader": "^0.13.2",
"marked": "^0.3.3",
"node-libs-browser": "^0.5.2",
"query-string": "^2.3.0",
"react": "^0.13.3",
"react-hsl-sliders": "^2.0.0",
"react-router": "^0.13.3",
"static-site-generator-webpack-plugin": "^1.0.0",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jxnblk/colorable.git"
},
"keywords": [
"color",
"contrast",
"wcag",
"accessibility"
],
"bugs": {
"url": "https://github.com/jxnblk/colorable/issues"
},
"homepage": "https://github.com/jxnblk/colorable"
}