-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "postcss-styled-syntax",
"version": "0.7.0",
"description": "PostCSS syntax for template literals CSS-in-JS (e. g. styled-components).",
"main": "lib/index.js",
"files": [
"lib",
"!lib/__tests__"
],
"scripts": {
"types": "tsc",
"lint": "eslint . --max-warnings 0 && prettier '**/*.{js,mjs}' --check && npm run types",
"test": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage",
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.{js,mjs}' --write"
},
"repository": "hudochenkov/postcss-styled-syntax",
"keywords": [
"postcss",
"postcss-syntax",
"parser",
"css-in-js",
"styled-components"
],
"author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
"license": "MIT",
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings 0",
"prettier --write"
]
},
"jest": {
"prettierPath": null,
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"prettier": "prettier-config-hudochenkov",
"dependencies": {
"typescript": "^5.6.3"
},
"peerDependencies": {
"postcss": "^8.4.21"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"eslint-config-hudochenkov": "^10.0.3",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-config-hudochenkov": "^0.4.0"
},
"engines": {
"node": ">=14.17"
}
}