forked from stylelint/postcss-css-in-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.51 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@stylelint/postcss-css-in-js",
"version": "0.38.0",
"description": "PostCSS syntax for parsing CSS in JS literals",
"keywords": [
"postcss",
"syntax",
"emotion",
"aphrodite",
"glamor",
"glamorous",
"react-native",
"react-style",
"reactcss",
"styled-components",
"styletron-react",
"typestyle",
"css-in-js",
"css"
],
"repository": "stylelint/postcss-css-in-js",
"license": "MIT",
"author": "gucong3000",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --cache --max-warnings=0",
"lint:md": "remark . --quiet --frail",
"prepare": "husky install",
"release": "np",
"test": "jest",
"watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint"
],
"globals": {
"__dirname": true,
"module": true,
"require": true
},
"reportUnusedDisableDirectives": true,
"root": true
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!coverage/**",
"!test{,s}/**",
"!**/.{prettier,eslint,mocha}rc.{js,cjs}"
],
"testMatch": [
"**/test/*.js",
"**/test/**/*.test.js"
]
},
"dependencies": {
"@babel/core": "^7.17.10"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.9",
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^3.0.0",
"autoprefixer": "^9.8.6",
"codecov": "^3.8.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-stylelint": "^15.1.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"json5": "^2.2.0",
"lint-staged": "^12.4.1",
"np": "^7.6.1",
"npm-run-all": "^4.1.5",
"postcss": ">=7.0.32",
"postcss-parser-tests": "^6.5.0",
"postcss-safe-parser": "^4.0.2",
"postcss-syntax": ">=0.36.2",
"prettier": "^2.6.2",
"remark-cli": "^10.0.1"
},
"peerDependencies": {
"postcss": ">=7.0.0",
"postcss-syntax": ">=0.36.2"
},
"engines": {
"node": ">=12.0.0"
},
"publishConfig": {
"access": "public"
}
}