-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 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
50
51
52
53
54
{
"name": "avif-in-css",
"version": "0.2.3",
"description": "PostCSS plugin to use AVIF image format in CSS background",
"main": "index.js",
"scripts": {
"test": "npm run test:coverage",
"test:coverage": "jest-ci --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucliweb/avif-in-css.git"
},
"keywords": [
"avif",
"background",
"css",
"image",
"polyfill",
"postcss",
"postcss-plugin"
],
"author": {
"name": "Joan León",
"email": "joan.leon@gmail.com",
"twitter": "@nucliweb",
"web": "https://joanleon.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nucliweb/avif-in-css/issues"
},
"homepage": "https://github.com/nucliweb/avif-in-css#readme",
"eslintIgnore": [
"polyfill.js"
],
"devDependencies": {
"jest": "^26.6.3",
"jest-ci": "^0.1.1",
"jest-cli": "^26.6.3",
"nanodelay": "^1.0.6",
"postcss": "8.1.14"
},
"peerDependencies": {
"postcss": "8.1.14"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}