-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 921 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
32
33
34
35
36
37
38
39
40
41
{
"name": "postcss-image-set-polyfill",
"version": "1.0.0",
"description": "PostCSS plugin for fallback image-set",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"image-set",
"background",
"image"
],
"author": "SuperOl3g <oleglykasov@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SuperOl3g/postcss-image-set-polyfill.git"
},
"dependencies": {
"postcss": "^7.0.14",
"postcss-media-query-parser": "^0.2.3",
"postcss-value-parser": "^3.3.1"
},
"devDependencies": {
"benchmark": "2.1.4",
"chai": "2.2.0",
"eslint": "3.15.0",
"husky": "0.13.4",
"mocha": "3.2.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint *.js **/*.js || true",
"benchmark": "node benchmark.js",
"precommit": "npm run lint",
"prepush": "npm test"
}
}