-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "compare-coverage-to-main",
"description": "Compares the current json coverage file to that of the latest release",
"version": "1.0.1",
"main": "index.js",
"bin": {
"compare-coverage-to-main": "bin/cmd.js"
},
"files": [
"bin/*",
"lib/**/*",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"tap": "tap",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"test": "tap",
"test:ci": "tools/test-ci.sh",
"pretest": "npm run lint",
"pretest:ci": "npm run lint",
"release": "semantic-release"
},
"author": "Evan Lucas <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://github.com/logdna/compare-coverage-to-main"
},
"homepage": "https://github.com/logdna/compare-coverage-to-main",
"bugs": {
"url": "https://github.com/logdna/compare-coverage-to-main/issues"
},
"license": "SEE LICENSE IN LICENSE",
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": "logdna",
"parserOptions": {
"ecmaVersion": 2019
}
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-logdna": "^5.0.0",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.3.0",
"tap": "^15.0.2",
"tap-parser": "^10.1.0",
"tap-xunit": "^2.4.1"
},
"dependencies": {
"@octokit/rest": "^18.5.2",
"help": "^3.0.2",
"nopt": "^5.0.0"
},
"release": {
"branches": [
"main"
],
"extends": [
"semantic-release-config-logdna"
]
}
}