-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "pullie",
"version": "6.1.2",
"type": "module",
"description": "A GitHub bot that makes your PRs better",
"author": "GoDaddy.com Operating Company, LLC",
"maintainers": [
"Jonathan Keslin <github@jonathankeslin.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:godaddy/pullie.git"
},
"homepage": "https://github.com/godaddy/pullie",
"bugs": "https://github.com/godaddy/pullie/issues",
"keywords": [
"pr",
"github",
"pullie"
],
"scripts": {
"lint": "eslint -c .eslintrc --fix *.js plugins/*.js plugins/*/*.js test/**/*.js",
"lint:fix": "npm run lint -- --fix",
"test:unit": "mocha test/unit/*.test.js test/unit/**/*.test.js",
"test:unit:debug": "mocha --inspect-brk test/unit/*.test.js test/unit/**/*.test.js",
"test:integration": "mocha test/integration/*.test.js",
"test:integration:debug": "mocha --inspect-brk test/integration/*.test.js",
"posttest": "npm run lint:fix",
"test": "c8 mocha test/unit/*.test.js test/unit/**/*.test.js test/integration/*.test.js",
"dev": "nodemon",
"start": "probot run ./index.js",
"coverage": "c8 report --reporter=lcov"
},
"dependencies": {
"array-shuffle": "^3.0.0",
"clone-deep": "^4.0.1",
"deepmerge": "^4.2.2",
"diagnostics": "^2.0.2",
"express": "^4.18.2",
"handlebars": "^4.7.7",
"node-fetch": "^3.3.0",
"p-reduce": "^3.0.0",
"prismjs": "^1.29.0",
"probot": "^12.3.0",
"resolve-cwd": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@octokit/rest": "^19.0.0",
"acorn": "^8.7.0",
"assume": "^2.3.0",
"assume-sinon": "^1.1.0",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-godaddy": "^7.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"nodemon": "^2.0.12",
"sinon": "^15.0.0"
},
"engines": {
"node": ">= 14"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}