-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 846 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 846 Bytes
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
{
"name": "postcss-srcset",
"version": "1.0.1",
"description": "Postcss plugin to auto resize images for different media queries",
"homepage": "https://github.com/niceagency/postcss-srcset",
"keywords": [
"postcss-plugin"
],
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack --config=demo/webpack.config.js && (xdg-open demo/index.html || open demo/index.html)"
},
"author": "Paul Kiddle <paul.kiddle@nice.agency>",
"license": "MIT",
"dependencies": {
"balanced-match": "^0.4.2",
"image-size": "^0.5.1",
"loader-utils": "^1.1.0",
"postcss": "^6.0.1",
"sharp": "^0.17.3"
},
"devDependencies": {
"jest": "^20.0.0",
"css-loader": "^0.28.1",
"file-loader": "^0.11.1",
"postcss-loader": "^2.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1"
}
}