forked from davidtheclark/stylelint-checkstyle-formatter
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 995 Bytes
/
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
{
"name": "stylelint-junit-formatter",
"version": "0.2.2",
"description": "Output JUnit XML reports of stylelint results",
"main": "index.js",
"files": ["index.js"],
"scripts": {
"lint": "eslint ./**/*.js",
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddies/stylelint-junit-formatter.git"
},
"keywords": [
"stylelint",
"junit",
"formatter",
"reporter",
"report"
],
"author": "Edwin Shin",
"contributors": [
"David Clark",
"Paul Loyd",
"Erik Pavletic"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/eddies/stylelint-junit-formatter/issues"
},
"homepage": "https://github.com/eddies/stylelint-junit-formatter#readme",
"dependencies": {
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"tape": "^4.11.0",
"xml2js": "^0.4.19"
}
}