-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 991 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
{
"author": "thoughtbot, Inc.",
"dependencies": {
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4"
},
"keywords": [
"stylelint",
"stylelint-config"
],
"license": "MIT",
"main": "index.js",
"name": "@thoughtbot/stylelint-config",
"peerDependencies": {
"stylelint": "^16.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thoughtbot/stylelint-config.git"
},
"scripts": {
"test": "node --test __tests__/*.test.*",
"lint:css": "stylelint --config index.js **/*.scss",
"lint:js": "eslint **/*.js **/*.?js",
"prepublishOnly": "git push && git push --tags",
"version": "git add CHANGELOG.md"
},
"version": "4.0.0",
"devDependencies": {
"@thoughtbot/eslint-config": "^1.0.3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3"
}
}