-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.43 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
{
"name": "eslint-plugin-logdna",
"version": "2.0.1",
"description": "ESlint plugin containing a collection of rules for enforcing code style at LogDNA",
"main": "lib/index.js",
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"private": false,
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"logdna"
],
"repository": {
"type": "git",
"url": "https://github.com/logdna/eslint-plugin-logdna.git"
},
"author": {
"name": "LogDNA, Inc."
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/eslint-plugin-logdna/issues"
},
"homepage": "https://github.com/logdna/eslint-plugin-logdna#readme",
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"tap": "tap",
"pretest": "npm run lint",
"test": "tap",
"release": "semantic-release"
},
"eslintConfig": {
"root": true,
"extends": "logdna",
"ignorePatterns": [
"node_modules/",
"coverage/"
]
},
"dependencies": {
"dot-prop": "^5.3.0",
"is-builtin-module": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-logdna": "^4.0.2",
"semantic-release": "^17.3.9",
"semantic-release-config-logdna": "^1.1.0",
"tap": "^14.10.8"
}
}