-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"author": "Pedro Pereira (https://github.com/ezypeeze)",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bugs": {
"url": "https://github.com/daanleenders/stylelint-formatter-github-checks/issues"
},
"description": "An Stylelint formatter to use with [Github Checks](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-status-checks#checks). It outputs a json format that outputs the json needed for the ['Update a check run'](https://docs.github.com/en/rest/reference/checks#update-a-check-run) API call, so you can send the stylelint output to github.",
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "^7.18.6",
"babel-jest": "^29.0.1",
"codecov": "^3.8.3",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.0.1"
},
"engines": {
"node": "^14"
},
"jest": {
"cacheDirectory": "/tmp/jest_rs",
"clearMocks": true,
"testEnvironment": "node",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"keywords": [
"stylelint",
"stylelint-formatter",
"stylelintformatter",
"github",
"github-checks",
"github-checks-api"
],
"license": "MIT",
"main": "src/formatter.js",
"name": "stylelint-formatter-github-checks",
"repository": {
"type": "git",
"url": "git://github.com/ezypeeze/stylelint-formatter-github-checks.git"
},
"scripts": {
"start": "echo \"Error: should only be run as part of Stylelint\" && exit 1",
"lint": "eslint ./src/**/*.js ./tests/**/*.js",
"lint:fix": "yarn lint --fix",
"test": "jest",
"coverage": "yarn test --coverage --collectCoverageFrom=\"./src/**\" && codecov"
},
"version": "1.0.0"
}