forked from lahmatiy/postcss-csso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "postcss-csso",
"version": "6.0.1",
"description": "PostCSS plugin to minify CSS using CSSO",
"keywords": [
"css",
"minifier",
"minify",
"compress",
"optimisation",
"csso",
"postcss",
"plugin"
],
"repository": "lahmatiy/postcss-csso",
"author": "Roman Dvornov <rdvornov@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./cjs/index.cjs",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "mocha test --reporter ${REPORTER:-progress}",
"test:cjs": "mocha cjs-test --reporter ${REPORTER:-progress}",
"lint": "eslint lib test",
"build": "npm run esm-to-cjs",
"build-and-test": "npm run esm-to-cjs-and-test",
"esm-to-cjs": "node scripts/esm-to-cjs",
"esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs",
"coverage": "c8 --reporter=lcovonly npm test",
"prepublishOnly": "npm run lint && npm test && npm run build-and-test"
},
"engines": {
"node": "^12.20.0 || ^14.13.0 || >=15.0.0",
"npm": ">=7.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"dependencies": {
"csso": "^5.0.5"
},
"devDependencies": {
"c8": "^7.10.0",
"eslint": "^8.4.1",
"mocha": "^9.2.2",
"postcss": "^8.0.0",
"postcss-nested": "^5.0.5",
"rollup": "^2.60.2"
},
"files": [
"cjs",
"lib"
]
}