-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "stylelint-codeframe-formatter",
"version": "1.2.0",
"description": "Stylelint formatter using babel code frame",
"main": "index.js",
"scripts": {
"eslint": "eslint index.js",
"test:cli": "stylelint --custom-formatter ./index.js ./tests/styles.css",
"test:webpack": "cd ./tests && webpack",
"test": "npm run test:cli && npm run test:webpack",
"install-and-test": "npm ci && npm test"
},
"author": "bencergazda",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bencergazda/stylelint-codeframe-formatter.git"
},
"keywords": [
"stylelint",
"formatter",
"codeframe"
],
"bugs": {
"url": "https://github.com/bencergazda/stylelint-codeframe-formatter/issues"
},
"homepage": "https://github.com/bencergazda/stylelint-codeframe-formatter#readme",
"dependencies": {
"@babel/code-frame": "^7.18.6",
"chalk": "^4.1.2",
"log-symbols": "^4.1.0",
"plur": "^4.0.0"
},
"devDependencies": {
"@types/babel__code-frame": "^7.0.3",
"css-loader": "^5.2.7",
"eslint": "^4.19.1",
"style-loader": "^2.0.0",
"stylelint": "^14.10.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-webpack-plugin": "^2.4.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
}
}