-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.3 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
{
"name": "constyble",
"version": "1.3.0",
"homepage": "https://www.projectwallace.com/oss",
"description": "A CSS complexity linter, based on css-analyzer.",
"bin": {
"constyble": "./lib/cli.js"
},
"engines": {
"node": ">=8"
},
"repository": "bartveneman/constyble",
"license": "MIT",
"keywords": [
"css",
"stats",
"analytics",
"analysis",
"test",
"assert",
"threshold",
"wallace",
"projectwallace",
"linter",
"complexity",
"static-analysis",
"css-linter"
],
"dependencies": {
"@projectwallace/css-analyzer": "^2.7.1",
"flat": "^5.0.0",
"get-stdin": "^7.0.0",
"is-array": "^1.0.1",
"is-number": "^7.0.0",
"leven": "^3.1.0",
"meow": "^6.1.0",
"parse-json": "^5.0.0",
"path-exists": "^4.0.0",
"strip-json-comments": "^3.0.1",
"tap": "^14.10.7",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@bartveneman/eslint-config-bv": "0.0.2",
"ava": "^2.4.0",
"eslint": "^6.8.0",
"execa": "^3.4.0",
"semver": "^7.1.3",
"trim-right": "^1.0.1"
},
"scripts": {
"test": "eslint ./lib ./test && ava"
},
"eslintConfig": {
"extends": "@bartveneman/eslint-config-bv"
},
"ava": {
"files": [
"test/**/*",
"!test/normalize-tap-output.js"
]
}
}