-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
75 lines (75 loc) · 1.54 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
{
"name": "sugarss",
"version": "5.0.0",
"description": "Indent-based CSS syntax for PostCSS",
"keywords": [
"css",
"postcss",
"postcss-syntax",
"syntax",
"indent",
"parser"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "postcss/sugarss",
"scripts": {
"unit": "node --test test/*.test.js",
"test:coverage": "c8 pnpm unit",
"test:lint": "eslint .",
"test": "pnpm run /^test:/"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"engines": {
"node": ">=18.0"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./parse": "./parse.js",
"./stringify": "./stringify.js",
"./tokenize": "./tokenize.js",
"./package.json": "./package.json"
},
"peerDependencies": {
"postcss": "^8.3.3"
},
"devDependencies": {
"@logux/eslint-config": "^53.5.1",
"c8": "^10.1.2",
"clean-publish": "^5.1.0",
"eslint": "^9.15.0",
"postcss": "^8.4.49",
"postcss-parser-tests": "^8.8.0"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 96.36,
"reporter": "lcov",
"check-coverage": true
},
"clean-publish": {
"cleanDocs": true
}
}