-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.19 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
56
57
58
59
60
{
"author": "gucong",
"bugs": {
"url": "https://github.com/gucong3000/postcss-pie/issues"
},
"dependencies": {
"postcss": "^7.0.1",
"request": "^2.87.0"
},
"description": "makes IE capable of rendering several of the most useful CSS3 decoration features.",
"devDependencies": {
"codecov": "^3.0.2",
"eslint": "^5.0.0",
"got": "^9.0.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.0.1"
},
"homepage": "https://github.com/gucong3000/postcss-pie#readme",
"keywords": [
"border-image",
"border-radius",
"box-shadow",
"css",
"css3",
"gradient",
"ie",
"pie",
"postcss",
"postcss-plugin"
],
"license": "MIT",
"main": "./lib/index",
"name": "postcss-pie",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/gucong3000/postcss-pie.git"
},
"scripts": {
"pretest": "eslint lib test",
"test": "nyc mocha"
},
"version": "3.0.1"
}