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
| {
| "name": "postcss-pxtorem",
| "description": "A CSS post-processor that converts px to rem.",
| "version": "5.1.1",
| "author": "cuth",
| "license": "MIT",
| "repository": {
| "type": "git",
| "url": "git@github.com:cuth/postcss-pxtorem.git"
| },
| "bugs": "https://github.com/cuth/postcss-pxtorem/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": "^6.8.0",
| "husky": "^4.2.3",
| "jasmine-node": "^3.0.0",
| "lint-staged": "^10.0.8",
| "prettier": "^1.19.1"
| },
| "keywords": [
| "css",
| "rem",
| "pixel",
| "px",
| "postcss",
| "postcss-plugin"
| ],
| "dependencies": {
| "postcss": "^7.0.27"
| }
| }
|
|