forked from lkxian888/postcss-px-to-viewport-8-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.37 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
{
"name": "postcss-px-to-viewport-8-plugin",
"version": "1.2.3",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"description": "css-vw",
"authors": {
"name": "lkxian888",
"email": "lkxian888@163.com"
},
"repository": {
"type": "git",
"url": "https://github.com/lkxian888/postcss-px-to-viewport-8-plugin"
},
"scripts": {
"build": "father build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "jest spec/*.spec.js"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@types/object-assign": "^4.0.30",
"father": "^4.1.3",
"father-build": "^1.17.2",
"jest": "^25.4.0",
"lint-staged": "^10.0.8",
"postcss": "^8.3.8",
"prettier": "^1.19.1",
"ts-jest": "^29.0.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"lib",
"es",
"README.md"
],
"dependencies": {
"object-assign": "^4.1.1"
},
"directories": {
"example": "example"
},
"keywords": [
"postcss-px-to-viewport-8-plugin",
"viewport",
"postcss",
"postcss-plugin",
"css",
"px",
"vw",
"vh",
"vmin",
"vmax"
],
"author": "lkxian888",
"license": "MIT"
}