-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "colorguard",
"version": "1.2.1",
"description": "Keep a watchful eye on your css colors",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "npm run lint && tape test/*.js | tap-spec"
},
"files": [
"bin",
"lib",
"index.js"
],
"bin": "./bin/colorguard",
"repository": {
"type": "git",
"url": "git@github.com:SlexAxton/css-colorguard.git"
},
"keywords": [
"css",
"colors",
"lint",
"csslint",
"postcss",
"postcss-plugin"
],
"author": "Alex Sexton <alexsexton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlexAxton/css-colorguard/issues"
},
"homepage": "https://github.com/SlexAxton/css-colorguard",
"dependencies": {
"color-diff": "^0.1.3",
"colorette": "1.0.1",
"log-symbols": "^1.0.2",
"object-assign": "^4.0.1",
"pipetteur": "^2.0.0",
"plur": "^2.0.0",
"postcss": "^5.0.4",
"postcss-reporter": "^1.2.1",
"text-table": "^0.2.0",
"yargs": "^1.2.6"
},
"devDependencies": {
"jshint": "^2.9.1",
"tap-spec": "^4.1.0",
"tape": "^4.2.0"
}
}