This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "@visionappscz/stylelint-config-visionapps-order",
"version": "2.1.0",
"description": "VisionApps' shareable config of properties order for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-order",
"visionapps"
],
"author": "visionappscz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/visionappscz/stylelint-config-visionapps-order.git"
},
"bugs": {
"url": "https://github.com/visionappscz/stylelint-config-visionapps-order/issues"
},
"homepage": "https://github.com/visionappscz/stylelint-config-visionapps-order#readme",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=14",
"npm": ">=6"
},
"dependencies": {},
"devDependencies": {
"@visionappscz/eslint-config-visionapps": "^1.5.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "jest",
"watch": "jest --watch"
},
"eslintConfig": {
"extends": [
"@visionappscz/eslint-config-visionapps"
],
"env": {
"es6": true,
"node": true,
"jest": true
}
},
"jest": {
"testEnvironment": "node",
"verbose": true
}
}