forked from projectwallace/css-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.12 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
{
"name": "@projectwallace/css-analyzer",
"version": "5.5.0",
"author": "Bart Veneman",
"repository": {
"type": "git",
"url": "https://github.com/projectwallace/css-analyzer"
},
"homepage": "https://www.projectwallace.com/oss",
"issues": "https://github.com/projectwallace/css-analyzer/issues",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"source": "src/index.js",
"main": "./dist/analyzer.cjs",
"module": "./dist/analyzer.module.js",
"unpkg": "./dist/analyzer.umd.js",
"exports": {
"require": "./dist/analyzer.cjs",
"default": "./dist/analyzer.modern.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "uvu",
"build": "microbundle"
},
"keywords": [
"projectwallace",
"wallace",
"css",
"stylesheet",
"stats",
"statistics",
"analytics",
"performance",
"styleguide",
"metrics"
],
"dependencies": {
"css-tree": "^2.1.0"
},
"devDependencies": {
"microbundle": "^0.14.2",
"uvu": "^0.5.3"
},
"mangle": {
"regex": "^_[^_]"
}
}