-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.57 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "postcss-image-set-generator",
"version": "1.0.0",
"description": "Postcss plugin for generate miniatures image-set()",
"main": "lib/main.js",
"files": [
"lib"
],
"scripts": {
"pretest": "npm run build",
"test": "npm run eslint && mocha",
"eslint": "eslint src test",
"prebuild": "rimraf ./lib",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/retyui/postcss-image-set-generator.git"
},
"keywords": [
"retina",
"scale",
"@3x",
"@2x",
"css",
"image-set",
"postcss-plugin",
"image",
"webp",
"png",
"jpg",
"jpeg",
"gif"
],
"author": {
"name": "David Narbutovich",
"email": "vamnemne@gmail.com",
"url": "https://github.com/retyui"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/retyui/postcss-image-set-generator/issues"
},
"homepage": "https://github.com/retyui/postcss-image-set-generator#readme",
"dependencies": {
"assets": "^3.0.0",
"postcss-functions": "^3.0.0",
"sharp": "^0.20.8"
},
"peerDependencies": {
"postcss": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"postcss": "^7.0.2",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.1.2",
"eslint": "^5.6.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=6.0.0"
}
}