-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "stylelint-no-px",
"version": "2.0.0",
"description": "A stylelint custom rule to ensure using rem instead of px",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/meowtec/stylelint-no-px.git"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"px",
"rem"
],
"author": "meowtec<bertonzh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meowtec/stylelint-no-px/issues"
},
"homepage": "https://github.com/meowtec/stylelint-no-px",
"devDependencies": {
"jest": "^29.7.0",
"jest-preset-stylelint": "^7.0.0",
"prettier": "^3.2.5",
"stylelint": "^16.0.0"
},
"dependencies": {
"postcss-less": "^6.0.0",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"stylelint": ">= 16"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
]
}
}