-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1007 Bytes
/
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
{
"name": "wallace-cli",
"version": "3.1.0",
"description": "Pretty CSS analytics on the CLI",
"homepage": "https://www.projectwallace.com/oss",
"author": "Bart Veneman",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/projectwallace/wallace-cli"
},
"keywords": [
"stylesheets",
"css",
"styles",
"analytics",
"analysis",
"analyze",
"analyzer",
"stats",
"statistics",
"cli",
"cli-app",
"projectwallace",
"wallace",
"performance"
],
"engines": {
"node": ">=18"
},
"scripts": {
"pretest": "npm run build",
"test": "uvu",
"build": "esbuild --bundle ./src/bin.js --outfile=./dist/cli.cjs --platform=node --format=cjs --minify"
},
"bin": {
"wallace": "./dist/cli.cjs"
},
"files": [
"dist"
],
"devDependencies": {
"@projectwallace/css-analyzer": "^5.15.0",
"esbuild": "^0.23.0",
"picocolors": "^1.0.1",
"uvu": "^0.5.6"
}
}