-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 988 Bytes
/
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
{
"name": "postcss-aspect-ratio-mini",
"version": "1.1.0",
"description": "A PostCSS plugin to fix an element's dimensions to an aspect ratio.",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js",
"format": "prettier -w **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yisibl/postcss-aspect-ratio-mini.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"postcss-aspect-ratio",
"plugin",
"aspect-ratio",
"aspect",
"ratio"
],
"author": "yisibl",
"license": "MIT",
"bugs": {
"url": "https://github.com/yisibl/postcss-aspect-ratio-mini/issues"
},
"homepage": "https://github.com/yisibl/postcss-aspect-ratio-mini",
"dependencies": {
"number-precision": "^1.3.2",
"postcss": "^7.0.6"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-postcss": "^8.0.0",
"gulp-tape": "1.0.0",
"prettier": "^2.4.1",
"tap-diff": "^0.1.1",
"tape": "^5.0.0"
}
}