-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.1 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
103
{
"name": "xo",
"version": "0.17.0",
"description": "JavaScript happiness style linter ❤️",
"license": "MIT",
"repository": "sindresorhus/xo",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"maintainers": [
{
"name": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage"
}
],
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js",
"cli.js",
"options-manager.js",
"config"
],
"keywords": [
"❤️",
"cli-app",
"cli",
"xo",
"xoxo",
"hugs",
"kisses",
"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.0",
"debug": "^2.2.0",
"deep-assign": "^1.0.0",
"eslint": "^3.6.0",
"eslint-config-xo": "^0.17.0",
"eslint-formatter-pretty": "^1.0.0",
"eslint-plugin-ava": "^3.1.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-no-use-extend-native": "^0.3.2",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-unicorn": "^1.0.0",
"get-stdin": "^5.0.0",
"globby": "^6.0.0",
"has-flag": "^2.0.0",
"meow": "^3.4.2",
"multimatch": "^2.1.0",
"parse-gitignore": "^0.3.1",
"path-exists": "^3.0.0",
"pkg-conf": "^2.0.0",
"resolve-cwd": "^1.0.0",
"resolve-from": "^2.0.0",
"update-notifier": "^1.0.0",
"xo-init": "^0.4.0"
},
"devDependencies": {
"ava": "*",
"coveralls": "^2.11.9",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.3.0",
"execa": "^0.5.0",
"nyc": "^8.3.0",
"pify": "^2.3.0",
"proxyquire": "^1.7.3",
"temp-write": "^2.0.1",
"xo": "sindresorhus/xo#v0.16.0"
},
"xo": {
"esnext": true
}
}