-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
85 lines (85 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "analyze-css",
"version": "2.2.32",
"author": "Maciej Brencz <[email protected]> (https://github.com/macbre)",
"description": "CSS selectors complexity and performance analyzer",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/macbre/analyze-css.git"
},
"keywords": [
"analysis",
"complexity",
"css",
"stylesheet",
"webperf"
],
"license": "BSD-2-Clause",
"engines": {
"node": "^18.0.0"
},
"dependencies": {
"cli": "^1.0.1",
"commander": "^12.0.0",
"css": "^3.0.0",
"css-shorthand-properties": "^1.1.1",
"css-what": "^6.0.1",
"debug": "^4.1.1",
"fast-stats": "0.0.7",
"glob": "^11.0.0",
"http-proxy-agent": "^7.0.0",
"node-fetch": "^3.0.0",
"onecolor": "^4.0.0",
"specificity": "^0.4.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/css": "0.0.38",
"autoprefixer": "^10.2.4",
"browserslist": "^4.11.1",
"check-dts": "^0.8.0",
"eslint": "^9.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.0.0",
"jest": "^29.0.0",
"postcss": "^8.3.6",
"prettier": "3.4.2"
},
"optionalDependencies": {
"sass": "^1.34.1"
},
"bin": "./bin/analyze-css.js",
"preferGlobal": true,
"scripts": {
"test": "jest test/ --coverage --detectOpenHandles",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "npx prettier --write .",
"prefixes": "npx browserslist@latest --update-db; DEBUG=* node data/prefixes.js",
"bump-version-patch": "npm version patch && git add -A . && git push origin master && git push --tags && ./create-gh-release.sh",
"check-dts": "check-dts lib/*.d.ts"
},
"jshintConfig": {
"esversion": 6,
"node": true,
"strict": true,
"validthis": true
},
"jest": {
"verbose": true,
"coveragePathIgnorePatterns": [
"test/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}