-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
111 lines (111 loc) · 2.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "semantic-release-config-logdna",
"description": "Semantic Release shareable configuration for logdna npm packages",
"version": "1.3.0",
"main": "index.js",
"files": [
"lib/**/*",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"tap": "tap",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"test": "tap",
"release": "semantic-release",
"test:ci": "tools/test-ci.sh",
"pretest": "npm run lint",
"pretest:ci": "npm run lint"
},
"author": "LogDNA Inc. <help@logdna.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/logdna/semantic-release-config-logdna.git"
},
"homepage": "https://github.com/logdna/semantic-release-config-logdna",
"bugs": {
"url": "https://github.com/logdna/semantic-release-config-logdna/issues"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"configuration",
"git",
"github",
"npm",
"release",
"semantic-release",
"semver",
"shareable"
],
"contributors": [
{
"name": "Eric Satterwhite",
"email": "esatterwhite@wi.rr.com"
},
{
"name": "Mike Del Tito",
"email": "mike.deltito@logdna.com"
}
],
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": "logdna",
"parserOptions": {
"ecmaVersion": 2019
},
"rules": {
"no-unused-vars": [
2,
{
"vars": "all",
"args": "none",
"varsIgnorePattern": "^_$"
}
]
}
},
"tap": {
"ts": false,
"jsx": false,
"browser": false,
"check-coverage": true,
"output-file": ".tap",
"files": [
"test/unit"
],
"coverage-report": [
"text",
"text-summary",
"json",
"json-summary",
"html"
],
"branches": 95,
"lines": 95,
"functions": 95,
"nyc-arg": [
"--exclude=test/",
"--exclude=coverage/",
"--all"
]
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-logdna": "^5.0.0",
"handlebars": "^4.7.6",
"semantic-release": "^17.3.8",
"tap": "^15.0.6",
"tap-parser": "^10.1.0",
"tap-xunit": "^2.4.1"
},
"dependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0"
}
}