-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "postcss-pxtorpx-pro",
"description": "A CSS post-processor that converts px to rpx. 转换px单位为rpx,并允许指定任意单位及其转换函数,支持指定黑名单prop",
"version": "2.0.0",
"author": "Genuifx",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Genuifx/postcss-pxtorpx-pro.git"
},
"bugs": "https://github.com/Genuifx/postcss-pxtorpx-pro/issues",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jasmine-node spec"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"eslint": "^8.11.0",
"husky": "^4.2.3",
"jasmine-node": "^1.16.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"peerDependencies": {
"postcss": "^8.1.1"
},
"keywords": [
"css",
"rpm",
"unit",
"pixel",
"px",
"postcss",
"postcss-plugin"
]
}