-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.65 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
{
"publishConfig": {
"access": "public"
},
"name": "eslint-plugin-require-sort",
"version": "1.3.0",
"description": "ESlint plugin for sorting requires (CommonJS modules) alphabetically",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prebuild": "rimraf dist",
"prepare": "npm run build",
"build": "babel index.js -d dist",
"release": "npx np"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/zcuric/eslint-plugin-require-sort"
},
"author": "Zdravko Ćurić <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zcuric/eslint-plugin-require-sort/issues"
},
"homepage": "https://github.com/zcuric/eslint-plugin-require-sort",
"keywords": [
"commonjs",
"eslint",
"eslint-plugin",
"eslint-plugin-sort-imports",
"eslint-plugin-require-sort",
"node",
"require"
],
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@extensionengine/eslint-config": "^3.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.0.3",
"eslint": "^8.23.1",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.4.0",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2"
},
"jest": {
"testPathIgnorePatterns": [
"dist",
"/node_modules/"
]
}
}