forked from Semigradsky/xo-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.22 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
{
"name": "xo-loader",
"version": "0.8.0",
"description": "Validate files with XO",
"author": {
"name": "Dmitry Semigradsky",
"email": "semigradskyd@gmail.com"
},
"license": "MIT",
"scripts": {
"lint": "xo --ignore=test/fixtures/*.js",
"test": "npm run lint && tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Semigradsky/xo-loader.git"
},
"homepage": "https://github.com/Semigradsky/xo-loader",
"bugs": {
"url": "https://github.com/Semigradsky/xo-loader/issues"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js"
],
"keywords": [
"gruntplugin",
"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"
],
"peerDependencies": {
"xo": "^0.17.0"
},
"dependencies": {
"loader-utils": "^0.2.16",
"object-assign": "^4.0.1"
},
"devDependencies": {
"xo": "^0.17.0",
"tape": "^4.5.1",
"webpack": "^1.12.14"
}
}