-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "prettier-plugin-organize-class-members",
"version": "1.0.0-beta.5",
"description": "prettier plugin to organize javascript and typescript classes",
"keywords": [
"prettier",
"prettier-plugin",
"typescript",
"classes",
"organize-classes"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "rimraf build && tsc",
"build:watch": "rimraf build && tsc --watch",
"prettier:write": "prettier --write src",
"prepare": "husky install",
"lint": "eslint src/**/*.ts",
"test": "jest --bail",
"prepublish": "npm run-script lint && npm run-script test && npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wdfinch/prettier-plugin-organize-class-members.git"
},
"author": "Will Finch (https://github.com/wdfinch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wdfinch/prettier-plugin-organize-class-members/issues"
},
"homepage": "https://github.com/wdfinch/prettier-plugin-organize-class-members#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jscodeshift": "^0.11.4",
"@types/lodash": "^4.14.182",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-packagejson": "^2.2.17",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"prettier": "^2.6.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"jscodeshift": "^0.13.1",
"lodash": "^4.17.21"
}
}