-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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-retina-bg-img",
"version": "5.0.1",
"description": "Automatically add retina background images",
"main": "lib/postcss-plugin.js",
"engines": {
"node": ">=10"
},
"files": [
"lib"
],
"scripts": {
"demo": "cd demo && gulp && echo '' && cat output/app.css",
"lint": "eslint lib tests",
"test": "mocha tests"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"retina",
"background",
"image"
],
"license": "MIT",
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.1.2",
"gulp": "^3.9.1",
"gulp-postcss": "7.0.0",
"mocha": "4.0.1",
"postcss-reporter": "5.0.0",
"prettier": "^1.5.2"
},
"homepage": "https://github.com/alexlafroscia/postcss-retina-bg-img",
"author": {
"name": "Alex LaFroscia",
"email": "alex@lafroscia.com",
"url": "https://github.com/alexlafroscia/postcss-retina-bg-img"
},
"repository": "alexlafroscia/postcss-retina-bg-img",
"dependencies": {
"postcss": "^6.0.11"
},
"volta": {
"node": "12.16.3",
"yarn": "1.22.4"
}
}