-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·49 lines (49 loc) · 1.11 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
{
"name": "postcss-color",
"version": "1.0.1",
"description": "PostCSS plugin to transform latest W3C CSS color module syntax to more compatible CSS",
"keywords": [
"css",
"postcss",
"postcss-plugins",
"color",
"colour",
"rgb",
"hwb",
"rebeccapurple",
"color-function",
"function"
],
"author": "MoOx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-color.git"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib",
"index.js"
],
"dependencies": {
"balanced-match": "^0.1.0",
"color": "^0.7.1",
"css-color-function": "^1.1.1",
"reduce-function-call": "^1.0.1"
},
"devDependencies": {
"jscs": "^1.5.9",
"jshint": "^2.5.2",
"jshint-stylish": "^0.4.0",
"postcss": "^2.1.0",
"tap-colorize": "^1.2.0",
"tape": "^2.13.4"
},
"scripts": {
"jscs": "jscs *.js **/*.js",
"jshint": "jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js",
"test": "npm run jscs && npm run jshint && tape test | tap-colorize"
}
}