forked from trivago/prettier-plugin-sort-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@trivago/prettier-plugin-sort-imports",
"version": "3.2.0",
"description": "A prettier plugins to sort imports in provided RegEx order",
"main": "lib/src/index.js",
"repository": {
"url": "https://github.com/trivago/prettier-plugin-sort-imports",
"type": "git"
},
"homepage": "https://github.com/trivago/prettier-plugin-sort-imports#readme",
"scripts": {
"prepare": "yarn run compile",
"compile": "tsc",
"preexample": "yarn run compile",
"example": "prettier --config ./examples/.prettierrc --plugin lib/src/index.js",
"test": "jest -i",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run compile && npm run test"
},
"keywords": [
"prettier",
"plugin",
"sort",
"import",
"typescript",
"javascript"
],
"author": {
"name": "Ayush Sharma",
"email": "[email protected]",
"url": "https://github.com/ayusharma"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "7.13.10",
"@babel/generator": "7.13.9",
"@babel/parser": "7.14.6",
"@babel/traverse": "7.13.0",
"@babel/types": "7.13.0",
"javascript-natural-sort": "0.7.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/jest": "26.0.20",
"@types/node": "14.14.34",
"@types/lodash": "4.14.168",
"jest": "26.6.3",
"prettier": "2.3.1",
"ts-jest": "26.5.3",
"typescript": "4.2.3"
},
"peerDependencies": {
"prettier": "2.x"
}
}