-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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
{
"name": "css-declaration-sorter",
"version": "7.2.0",
"description": "Sorts CSS declarations fast and automatically in a certain order.",
"type": "module",
"exports": {
"import": {
"types": "./src/core/main.d.mts",
"default": "./src/core/main.mjs"
},
"require": {
"types": "./src/core/main.d.cts",
"default": "./dist/main.cjs"
}
},
"types": "./src/core/main.d.cts",
"main": "./dist/main.cjs",
"files": [
"src/core/",
"src/orders/",
"dist/"
],
"scripts": {
"build": "rollup -c",
"preversion": "npm test",
"test": "uvu src .+\\.test\\.mjs",
"test:ci": "npm test && npm run lint -- --max-warnings 0",
"lint": "eslint src/core/*.mjs",
"scrape": "node src/property-scraper.mjs",
"prepack": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@mdn/browser-compat-data": "^5.5.20",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"eslint": "^9.0.0",
"postcss": "^8.4.38",
"rollup": "^3.29.4",
"uvu": "^0.5.6"
},
"peerDependencies": {
"postcss": "^8.0.9"
},
"engines": {
"node": "^14 || ^16 || >=18"
},
"repository": {
"type": "git",
"url": "https://github.com/Siilwyn/css-declaration-sorter.git"
},
"author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
"license": "ISC",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"declaration",
"sorter",
"property",
"order"
]
}