-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
95 lines (95 loc) · 2.1 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
{
"name": "postcss-js",
"version": "4.0.1",
"description": "PostCSS for CSS-in-JS and styles in JS objects",
"keywords": [
"postcss",
"postcss-runner",
"js",
"inline",
"react",
"css",
"cssinjs"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "postcss/postcss-js",
"scripts": {
"unit": "uvu . '\\.test\\.js$'",
"test:coverage": "c8 pnpm unit",
"test:lint": "eslint .",
"test": "pnpm run /^test:/"
},
"engines": {
"node": "^12 || ^14 || >= 16"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./package.json": "./package.json",
"./async": "./async.js",
"./objectifier": "./objectifier.js",
"./parser": "./parser.js",
"./process-result": "./process-result.js",
"./sync": "./sync.js"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"peerDependencies": {
"postcss": "^8.4.21"
},
"dependencies": {
"camelcase-css": "^2.0.1"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.1",
"c8": "^8.0.1",
"clean-publish": "^4.2.0",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"postcss": "^8.4.31",
"uvu": "^0.5.6"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"perfectionist/sort-objects": "off",
"no-console": "off"
}
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
},
"clean-publish": {
"cleanDocs": true
}
}