This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@ntvr/stylelint-config-ntvr-order",
"version": "1.0.0",
"description": "Ntvr' shareable config of properties order for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-order"
],
"author": "ntvr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ntvr/stylelint-config-ntvr-order.git"
},
"bugs": {
"url": "https://github.com/ntvr/stylelint-config-ntvr-order/issues"
},
"homepage": "https://github.com/ntvr/stylelint-config-ntvr-order#readme",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"stylelint": "^13.7.2",
"stylelint-order": "^4.1.0"
},
"peerDependencies": {
"stylelint": "^13.7.2",
"stylelint-order": "^4.1.0"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "jest",
"watch": "jest --watch"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1,
"MemberExpression": 1,
"FunctionDeclaration": {
"parameters": 1,
"body": 1
},
"FunctionExpression": {
"parameters": 1,
"body": 1
},
"CallExpression": {
"arguments": 1
}
}
],
"max-len": [
"error",
120,
4,
{
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
],
"no-tabs": "off"
}
},
"jest": {
"testEnvironment": "node",
"verbose": true
}
}