-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "eslint-plugin-sort-class-members",
"version": "1.21.0",
"description": "ESLint rule for enforcing consistent ES6 class member order.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Bryan R Smith <[email protected]>",
"homepage": "https://github.com/bryanrsmith/eslint-plugin-sort-class-members",
"repository": {
"type": "git",
"url": "git://github.com/bryanrsmith/eslint-plugin-sort-class-members.git"
},
"main": "dist/index.js",
"directories": {
"lib": "dist/"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"prebuild": "npm run lint && npm run prettier-check && npm run test",
"build": "rm -rf dist && babel src --out-dir dist",
"test": "jest --coverage test/**/*.js",
"lint": "eslint src/ test/",
"prettier": "prettier --write './{src,test}/**/*.js'",
"prettier-check": "prettier --list-different './{src,test}/**/*.js'"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@typescript-eslint/parser": "^5.36.2",
"babel-eslint-parser-legacy": "npm:@babel/[email protected]",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
}
}