forked from stylelint-stylistic/stylelint-stylistic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
85
{
"name": "stylelint-codeguide",
"description": "A collection of codeguide-specific rules for Stylelint",
"version": "0.3.2",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"!**/__tests__/**"
],
"dependencies": {
"@csstools/css-parser-algorithms": "^2.3.2",
"@csstools/css-tokenizer": "^2.2.1",
"@csstools/media-query-list-parser": "^2.1.5",
"html-tags": "^3.3.1",
"is-plain-object": "^5.0.0",
"postcss-selector-parser": "^6.0.13",
"postcss-value-parser": "^4.2.0",
"style-search": "^0.1.0"
},
"peerDependencies": {
"stylelint": "^16.0.0-2"
},
"engines": {
"node": "^18.12 || ^20.9"
},
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "[email protected]"
},
"homepage": "https://github.com/firefoxic/stylelint-codeguide",
"bugs": {
"url": "https://github.com/firefoxic/stylelint-codeguide/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/firefoxic/stylelint-codeguide"
},
"keywords": [
"codeguide",
"css",
"csslint",
"lint",
"linter",
"stylelint",
"stylelint-plugin"
],
"scripts": {
"prepare": "husky install",
"prebuild": "rm -rf dist",
"build": "babel lib --out-dir dist",
"prepublishOnly": "pnpm build",
"lint": "eslint . --ignore-path .gitignore",
"pretest": "pnpm lint",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "pnpm test --coverage",
"test:watch": "pnpm test --watch",
"preversion": "pnpm test",
"postversion": "pnpm publish",
"postpublish": "git push origin --all && git push origin --tags"
},
"babel": {
"presets": [
"@babel/env"
]
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@jest/globals": "^29.7.0",
"common-tags": "^1.8.2",
"deepmerge": "^4.3.1",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9",
"stylelint": "^16.0.0-2"
}
}