-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "postcss-styled-jsx",
"version": "0.0.0-semantically-released",
"description": "PostCSS syntax for parsing styled-jsx",
"main": "./lib/index.js",
"files": [
"lib"
],
"keywords": [
"postcss",
"syntax",
"styled-jsx",
"react",
"next",
"nextjs",
"css-in-js",
"css"
],
"homepage": "https://github.com/foobaragency/postcss-styled-jsx#readme",
"bugs": {
"url": "https://github.com/foobaragency/postcss-styled-jsx/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/foobaragency/postcss-styled-jsx"
},
"author": "foobar Agency GmbH",
"license": "MIT",
"scripts": {
"fix": "yarn lint:prettier --write && yarn lint --fix",
"lint": "eslint --ext .js --cache .",
"lint:prettier": "prettier \"**/*.{js,ts,json,md,yml}\" --ignore-path .gitignore",
"semantic-release": "semantic-release",
"test": "vitest",
"test:cov": "vitest --coverage"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"c8": "^7.11.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.4.7",
"postcss-syntax": "^0.36.2",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"vitest": "^0.34.1"
},
"peerDependencies": {
"postcss": "^8.4.7",
"postcss-syntax": "^0.36.2"
}
}