-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "eslint-plugin-django",
"description": "An eslint environment plugin that configures globals added by the Django JavaScript Catalog",
"license": "BSD-3-Clause",
"version": "1.1.0",
"author": {
"name": "Ben Spaulding",
"email": "[email protected]",
"url": "https://www.benspaulding.com"
},
"homepage": "https://github.com/benspaulding/eslint-plugin-django#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/benspaulding/eslint-plugin-django.git"
},
"bugs": {
"url": "https://github.com/benspaulding/eslint-plugin-django/issues"
},
"engines": {
"node": "^12.0.0 || >=14.0.0"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"django-i18n",
"djangojs",
"django"
],
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"peerDependencies": {
"eslint": ">=6.8.0"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
}
}