-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "postcss-plugin-px2viewport",
"version": "0.2.1",
"description": "A CSS post-processor that converts px to viewport units or/and rem.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuidi-fed/postcss-plugin-px2viewport.git"
},
"keywords": [
"css",
"units",
"pixel",
"px",
"viewport",
"vw",
"vh",
"vmin",
"vmax",
"rem",
"postcss",
"postcss-plugin"
],
"bugs": {
"url": "https://github.com/shuidi-fed/postcss-plugin-px2viewport/issues"
},
"author": "vhtml (https://github.com/vhtml)",
"license": "MIT",
"engines": {
"node": ">=7.6.0"
},
"homepage": "https://github.com/shuidi-fed/postcss-plugin-px2viewport#readme",
"dependencies": {
"object-assign": "^4.0.1",
"postcss": "^6.0.19"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}