forked from deecewan/eslint-plugin-snakecase
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.83 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
68
{
"name": "eslint-plugin-snakecasejs",
"description": "ESLint Plugin to enforce a style of snake_case in your project, rather than just disabling camelCase.",
"version": "2.2.0",
"main": "plugin.js",
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev/eslint-plugin-snakecasejs",
"bugs": {
"url": "https://github.com/ptkdev/eslint-plugin-snakecasejs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/eslint-plugin-snakecasejs.git"
},
"scripts": {
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint-fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"docs": "markserv ./README.md",
"contributors-generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run contributors-generate"
}
},
"keywords": [
"ptkdev",
"snake_case",
"snakecase",
"snakecase-javascript",
"underscore-syntax",
"programming-style",
"conventions",
"syntax",
"coding-style",
"eslint",
"eslint-plugin",
"eslint-plugin-snakecase",
"eslint-plugin-snakecasejs"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"all-contributors-cli": "latest",
"json": "latest",
"chai": "latest",
"jest": "latest",
"husky": "latest",
"yargs": "latest",
"markserv": "latest"
},
"contributors": [
"David Buchan-Swanson [@deecewan] <david.buchanswanson@gmail.com>",
"Tomasz Domański [@rozpuszczalny] <github@tomaszdomanski.com>"
]
}