-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "postcss-filter-gradient",
"version": "1.0.0",
"description": "PostCSS plugin for generating the old IE supported filter gradient.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"ie",
"filter",
"gradient"
],
"author": "Kevin Yue <yuezk001@gmail.com>",
"license": "MIT",
"repository": "yuezk/postcss-filter-gradient",
"bugs": {
"url": "https://github.com/yuezk/postcss-filter-gradient/issues"
},
"homepage": "https://github.com/yuezk/postcss-filter-gradient",
"dependencies": {
"filter-gradient": "^1.0.1",
"postcss": "^6.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"gulp": "^3.9.1",
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^2.5.3"
},
"scripts": {
"test": "gulp",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push origin master --tags",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
}
}