-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.02 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.02 KB
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
85
86
87
{
"name": "postcss-px-to-clamp",
"version": "1.0.5",
"description": "PostCSS plugin that converts px to clamp (clamp(min, val, max))",
"main": "./dist/index.js",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-px-to-clamp",
"clamp",
"viewport",
"units",
"pixel",
"px",
"calc",
"vw"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "npm run build",
"posttest": "node example",
"lint": "eslint . --fix",
"test": "jest --coverage && npm run lint",
"build": "tsc",
"publish": "clean-publish"
},
"author": "wangguangyou",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:wangguangyou/postcss-px-to-clamp.git"
},
"bugs": "https://github.com/wangguangyou/postcss-px-to-clamp/issues",
"homepage": "https://github.com/wangguangyou/postcss-px-to-clamp",
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"clean-publish": "^3.4.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off",
"@typescript-eslint/no-var-requires": 0
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}