-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "postcss-color-gray",
"version": "4.0.0",
"description": "PostCSS plugin to transform gray() function to today's CSS",
"repository": "https://github.com/postcss/postcss-color-gray.git",
"author": {
"name": "Shinnosuke Watanabe",
"url": "https://github.com/shinnn"
},
"scripts": {
"pretest": "npm run eslint",
"eslint": "eslint index.js test.js",
"jscs": "jscs index.js test.js",
"test": "node test.js | tap-spec",
"coverage": "istanbul cover test.js",
"coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls",
"release": "npmpub"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/postcss/postcss-color-gray/blob/master/LICENSE"
}
],
"files": [
"index.js"
],
"keywords": [
"css",
"css4",
"style",
"stylesheet",
"postcss",
"postcss-plugin",
"color",
"gray",
"function"
],
"dependencies": {
"color": "^1.0.3",
"postcss": "^6.0.1",
"postcss-message-helpers": "^2.0.0",
"reduce-function-call": "^1.0.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"npmpub": "^3.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}