-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.18 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": "eslint-plugin-consistent-default-export-name",
"version": "0.0.14",
"homepage": "https://github.com/minseoksuh/eslint-plugin-consistent-default-export-name/blob/main/README.md",
"description": "eslint plugin with rules to help use default export names consistently throughout the project",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"default export",
"default import"
],
"author": "minseoksuh",
"main": "lib/index.js",
"files": [
"lib",
"docs",
"LICENSE",
"README.md"
],
"scripts": {
"test": "mocha tests --recursive"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
"lodash.upperfirst": "^4.3.1"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^7.2.0",
"prettier": "2.3.2",
"sinon": "^11.1.1"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}