-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "prettier-plugin-import-sort",
"version": "0.0.7",
"description": "Prettier plugin to pass javascript and typescript through import-sort",
"main": "src/index.js",
"keywords": [
"prettier",
"import-sort",
"plugin"
],
"author": {
"name": "Guy Gascoigne-Piggford",
"email": "[email protected]"
},
"homepage": "https://github.com/ggascoigne/prettier-plugin-import-sort#readme",
"bugs": {
"url": "https://github.com/ggascoigne/prettier-plugin-import-sort/issues"
},
"license": "MIT",
"dependencies": {
"import-sort": "^6.0.0",
"import-sort-config": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0"
},
"devDependencies": {
"import-sort-style-module": "^6.0.0",
"prettier": "2.3.0",
"prettier-plugin-import-sort": "./"
},
"peerDependencies": {
"prettier": ">= 2.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}