-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.72 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
{
"name": "pull-request-size-reminder",
"version": "1.0.16",
"description": "CLI to check potential size of pull request",
"keywords": [
"git",
"pull-request",
"pull request"
],
"engines": {
"node": ">=8.0.0"
},
"main": "./src/check.js",
"bin": {
"pull-request-size-reminder": "./src/check.js"
},
"files": [
"src/**/*.js",
"!src/**/*.test.js"
],
"scripts": {
"test": "jest .",
"eslint": "eslint .",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlennox/pull-request-size-reminder.git"
},
"author": {
"name": "Mark Lennox",
"email": "[email protected]",
"url": "https://webpusher.ie"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mlennox/pull-request-size-reminder/issues"
},
"homepage": "https://github.com/mlennox/pull-request-size-reminder#readme",
"dependencies": {
"chalk": "^2.4.2",
"execa": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@types/jest": "^24.0.22",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.3.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-junit": "^6.4.0",
"prettier": "^1.19.1",
"webpack-cli": "^3.3.10"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npx eslint . && node ./src/check.js",
"pre-push": "npm test && node ./src/check.js"
}
}
}