-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 871 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 871 Bytes
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
{
"name": "csso-cli",
"version": "4.0.2",
"description": "Command line interface for CSSO",
"repository": "css/csso-cli",
"license": "MIT",
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
"keywords": [
"cli",
"css",
"minifier",
"minify",
"compress",
"optimisation"
],
"bin": {
"csso": "./bin/csso"
},
"main": "./lib/index.js",
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"test": "mocha --reporter dot",
"lint": "eslint bin/* test lib",
"lint-and-test": "npm run lint && npm test",
"travis": "npm run lint-and-test"
},
"dependencies": {
"chokidar": "^3.5.3",
"clap": "^3.1.1",
"csso": "^5.0.4",
"source-map-js": "^1.0.2"
},
"devDependencies": {
"eslint": "^8.19.0",
"mocha": "^9.2.2"
},
"files": [
"bin",
"lib"
]
}