This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "stylelint-config-strict-scss",
"version": "0.5.0",
"description": "Strict shareable config for stylelint and SCSS",
"main": "index.js",
"repository": "https://github.com/wemake-services/stylelint-config-strict-scss.git",
"author": "Nikita Sobolev <mail@sobolevn.me>",
"license": "MIT",
"private": false,
"keywords": [
"stylelint",
"stylelint-config",
"scss",
"stylelint-scss",
"standard"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --coverage",
"coveralls": "npm run test && cat ./.coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"babel": {
"presets": "env"
},
"jest": {
"preset": "jest-preset-stylelint",
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"style-search": "^0.1.0",
"stylelint": "^9.2.0",
"stylelint-color-format": "^0.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-declaration-block-no-ignored-properties": "^1.1.0",
"stylelint-declaration-strict-value": "^1.0.4",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-wemake": "^0.4.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^7.0.0",
"jest": "^23.0.1",
"jest-preset-stylelint": "^1.3.0"
}
}