-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
118 lines (118 loc) · 2.72 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "eslint-config-xo-vue",
"version": "1.1.1",
"description": "Official ESLint shareable config for Vue to be used with eslint-config-xo https://github.com/xojs/xo",
"repository": "https://github.com/ChocPanda/eslint-config-xo-vue",
"author": "ChocPanda",
"main": "src/index.js",
"license": "MIT",
"private": false,
"scripts": {
"commit": "git-cz",
"build": "rollup -c",
"postpublish": "cp -r package.json ..",
"test": "ava",
"test:unit": "ava",
"test:cov": "nyc ava && nyc report",
"test:report": "nyc ava --tap | tap-junit --output ./reports/ava --name test-results.xml",
"lint": "xo",
"lint:test": "xo",
"lint:fix": "xo --fix",
"lint:report": "xo --reporter junit > ./reports/xo/test-results.xml",
"release": "semantic-release",
"clean": "rimraf dist && rimraf node_modules",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"files": [
"index.js",
"spaces.js"
],
"engines": {
"node": ">=10"
},
"keywords": [
"❤️",
"vue",
"vuejs",
"eslintconfig",
"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"
],
"xo": {
"prettier": "true",
"rules": {
"unicorn/prevent-abbreviations": [
"warn",
{
"whitelist": {
"src": true,
"dest": true,
"env": true,
"props": true,
"assetsDir": true,
"tarballDir": true,
"pkgRoot": true
}
}
]
}
},
"config": {
"path": "./node_modules/cz-conventional-changelog",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"ava": "^3.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.1.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.0.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"semantic-release": "^17.0.4",
"xo": "^0.27.2"
},
"peerDependencies": {
"eslint": ">=6",
"eslint-config-xo": "^0.29.1",
"eslint-plugin-vue": "^6.2.1"
},
"dependencies": {
"eslint-plugin-unicorn": "^16.1.1",
"snyk": "^1.996.0",
"vue-eslint-parser": "^7.2.0"
},
"snyk": true
}