This repository has been archived by the owner on Mar 9, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.44 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
{
"name": "gromit-cli",
"version": "1.5.0",
"homepage": "https://www.projectwallace.com/oss",
"description": "A test framework to assert that CSS statistics don't exceed provided thresholds.",
"bin": {
"gromit": "./cli.js"
},
"repository": "bartveneman/gromit-cli",
"license": "MIT",
"keywords": [
"css",
"stats",
"analytics",
"analysis",
"test",
"assert",
"treshold",
"wallace",
"projectwallace"
],
"dependencies": {
"@projectwallace/css-analyzer": "^2.1.1",
"flat": "^4.1.0",
"get-stdin": "^6.0.0",
"is-array": "^1.0.1",
"is-number": "^7.0.0",
"leven": "^2.1.0",
"log-symbols": "^2.2.0",
"meow": "^5.0.0",
"parse-json": "^4.0.0",
"path-exists": "^3.0.0",
"strip-json-comments": "^2.0.1",
"tap": "^12.5.1",
"unique-random-array": "^1.0.1",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"ava": "^1.2.0",
"execa": "^1.0.0",
"prettier": "^1.16.4",
"semver": "^5.6.0",
"xo": "^0.24.0"
},
"scripts": {
"test": "xo && ava"
},
"xo": {
"semicolon": false,
"prettier": true,
"rules": {
"ava/no-import-test-files": "warn"
}
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always",
"overrides": [
{
"files": "*.json",
"options": {
"useTabs": false
}
}
]
}
}