-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@jonny1994/postcss-px-to-viewport",
"description": "A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax).",
"version": "1.1.0",
"author": "Jonny Chen <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jonny-china/postcss-px-to-viewport.git"
},
"bugs": "https://github.com/Jonny-china/postcss-px-to-viewport/issues",
"homepage": "https://github.com/Jonny-china/postcss-px-to-viewport",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types",
"README_CN.md"
],
"keywords": [
"css",
"units",
"pixel",
"px",
"viewport",
"vw",
"vh",
"vmin",
"vmax",
"postcss",
"postcss8",
"postcss-plugin"
],
"scripts": {
"dev": "tsc -w",
"test": "jest spec/*.spec.ts",
"commit": "cz",
"release": "node ./publish.js",
"prebuild": "rimraf dist types",
"build": "tsc -b",
"prepublishOnly": "pnpm run build",
"prepare": "husky install"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^16.2.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"conventional-recommended-bump": "^6.1.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"inquirer": "^8.2.2",
"jest": "^27.5.1",
"postcss": "^8.0.0",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}