-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "eslint-config-logdna",
"version": "7.0.3",
"description": "LogDNA's preferred eslint config to be used across all projects",
"main": "index.js",
"private": false,
"scripts": {
"lint": "eslint ./",
"pretest": "npm run lint",
"test": "tools/test.sh",
"tap": "tap",
"release": "semantic-release",
"release:dry": "npm run release -- --dry-run --no-ci --branches ${BRANCH_NAME:-main}"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/logdna/eslint-config-logdna.git"
},
"author": {
"name": "LogDNA, Inc.",
"email": "help@logdna.com"
},
"license": "MIT",
"eslintConfig": {
"root": true
},
"bugs": {
"url": "https://github.com/logdna/eslint-config-logdna/issues"
},
"homepage": "https://github.com/logdna/eslint-config-logdna#readme",
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
},
"devDependencies": {
"eslint": "^8.1.0",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.1.1",
"tap": "^14.10.7",
"tap-xunit": "^2.4.1"
},
"dependencies": {
"eslint-plugin-logdna": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sensible": "^3.1.0"
}
}