-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "eslint-plugin-travel-planet",
"version": "1.1.1",
"description": "A plugin for the ESLint linter that adds more naming conventions for variables and functions.",
"keywords": [
"eslint",
"eslint-plugin",
"snake-case",
"snakecase",
"snake_case",
"underscore-case",
"underscore_case",
"camel-case",
"camelcase"
],
"homepage": "https://github.com/4nds/eslint-plugin-travel-planet/",
"bugs": {
"url": "https://github.com/4nds/eslint-plugin-travel-planet/issues"
},
"license": "ISC",
"author": "Cyprien dker",
"contributors": [
"Cyprien dker",
"4nds (https://github.com/4nds/)"
],
"main": "Source/Index.js",
"repository": {
"type": "git",
"url": "https://github.com/4nds/eslint-plugin-travel-planet.git"
},
"scripts": {
"setup_test": "cd tests && npm install ../",
"run_test": "eslint tests",
"test": "npm run setup_test && npm run run_test"
},
"dependencies": {
"eslint": "^8.25.0"
},
"devDependencies": {
"eslint-plugin-jsdoc": "^39.3.6"
}
}