-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 KB
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": "ko-lint-config",
"version": "2.2.21",
"description": "lint configs about eslint stylelint and prettier",
"main": "index.js",
"files": [
"**/*",
"!test/**/*"
],
"typings": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "tape test/*.js"
},
"keywords": [
"code style",
"eslint",
"eslint config",
"prettier",
"stylelint",
"lint"
],
"bugs": {
"url": "https://github.com/DTStack/ko/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DTStack/ko",
"directory": "packages/ko-lint-config"
},
"homepage": "https://github.com/DTStack/ko",
"author": "DTStack",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-dt-react": "0.0.6",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-n": "15.2.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-requires": "2.1.0",
"postcss": "8.4.31",
"postcss-less": "6.0.0",
"postcss-scss": "4.0.4",
"prettier": "2.7.1",
"stylelint": "14.11.0",
"stylelint-config-standard": "25.0.0",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.3.0"
},
"devDependencies": {
"tape": "^5.5.2",
"typescript": "4.7.4"
},
"engines": {
"node": ">=14"
}
}