-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
{
"name": "css-analyzer-diff",
"version": "2.0.0",
"description": "Calculate the difference between two sets of CSS stats ",
"main": "src/diff.js",
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "eslint ./src ./test && nyc ava"
},
"repository": "bartveneman/css-analyzer-diff",
"keywords": [
"css",
"stats",
"diff",
"stylesheets",
"analytics",
"analysis",
"statistics",
"cli",
"cli-app",
"cssstats",
"parker",
"stylestats",
"projectwallace",
"wallace",
"performance",
"property"
],
"author": "Bart Veneman",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartveneman/css-analyzer-diff/issues"
},
"homepage": "https://github.com/bartveneman/css-analyzer-diff#readme",
"dependencies": {
"color-sorter": "^3.0.0",
"css-unit-sort": "^1.1.1",
"string-natural-compare": "^2.0.3"
},
"devDependencies": {
"@bartveneman/eslint-config-bv": "0.0.2",
"ava": "^2.3.0",
"eslint": "^6.3.0",
"nyc": "^14.1.1"
},
"eslintConfig": {
"extends": "@bartveneman/eslint-config-bv"
}
}