This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
generated from joeyjiron06/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "istanbul-gh-pr-uncovered",
"version": "1.0.0-beta.2",
"description": "Get ",
"main": "src/index.js",
"types": "types.d.ts",
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-json": "^2.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"nock": "^12.0.2"
},
"scripts": {
"test": "jest --config=jest.config.js",
"lint": "eslint \"**/*.js\" \"**/*.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeyjiron06/istanbul-gh-pr-uncovered.git"
},
"author": "Joey Jiron <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joeyjiron06/istanbul-gh-pr-uncovered/issues"
},
"homepage": "https://github.com/joeyjiron06/istanbul-gh-pr-uncovered#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js(on)": "npm run lint -- --fix"
},
"keywords": [
"istanbul",
"github",
"pull request",
"uncovered",
"lines",
"node",
"npm"
],
"dependencies": {
"@octokit/app": "^4.2.0",
"@octokit/rest": "^17.1.0",
"env-ci": "^5.0.2",
"execa": "^4.0.0",
"git-file-patch-parser": "^1.0.0",
"istanbul-lib-coverage": "^3.0.0"
}
}