-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.01 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "xo",
"version": "0.24.0",
"description": "JavaScript happiness style linter ❤️",
"license": "MIT",
"repository": "xojs/xo",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"bin": "cli.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "node cli-main.js && eslint . && nyc ava"
},
"files": [
"config",
"lib",
"*.js"
],
"keywords": [
"cli-app",
"cli",
"xo",
"xoxo",
"happy",
"happiness",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple"
],
"dependencies": {
"arrify": "^1.0.1",
"debug": "^4.1.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.26.0",
"eslint-formatter-pretty": "^2.0.0",
"eslint-plugin-ava": "^5.1.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-no-use-extend-native": "^0.4.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-unicorn": "^7.0.0",
"find-cache-dir": "^2.0.0",
"get-stdin": "^6.0.0",
"globby": "^9.0.0",
"has-flag": "^3.0.0",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.1",
"meow": "^5.0.0",
"multimatch": "^3.0.0",
"open-editor": "^1.2.0",
"path-exists": "^3.0.0",
"pkg-conf": "^2.1.0",
"prettier": "^1.15.2",
"resolve-cwd": "^2.0.0",
"resolve-from": "^4.0.0",
"semver": "^5.5.0",
"slash": "^2.0.0",
"update-notifier": "^2.3.0",
"xo-init": "^0.7.0"
},
"devDependencies": {
"ava": "^1.1.0",
"coveralls": "^3.0.0",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.6.1",
"execa": "^1.0.0",
"nyc": "^13.0.1",
"pify": "^4.0.0",
"proxyquire": "^2.0.1",
"temp-write": "^3.4.0"
},
"eslintConfig": {
"extends": "eslint-config-xo"
},
"eslintIgnore": [
"test/fixtures"
]
}