-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "probot-community-health",
"version": "1.3.0",
"description": "Assesses the community health of organization repositories and guides maintainers to improve",
"author": "Brian Torres-Gil <[email protected]>",
"license": "ISC",
"private": true,
"repository": "https://github.com/btorresgil/probot-community-health.git",
"homepage": "https://github.com/btorresgil/probot-community-health",
"bugs": "https://github.com/btorresgil/probot-community-health/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "prettier --write .",
"lint:check": "prettier --check .",
"test": "LOG_LEVEL=error jest",
"test:watch": "LOG_LEVEL=error jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/rest": "^16.43.1",
"handlebars": "^4.7.6",
"p-map-series": "^2.1.0",
"probot": "^9.11.3",
"probot-metadata": "^1.0.1",
"ramda": "^0.27.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/cache-manager": "^2.10.2",
"@types/jest": "^25.2.1",
"@types/nock": "^11.1.0",
"@types/node": "^13.1.0",
"@types/ramda": "^0.27.3",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^2.34.0",
"cache-manager": "^3.2.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^25.3.0",
"nock": "^12.0.3",
"nodemon": "^2.0.3",
"prettier": "2.0.5",
"smee-client": "^1.1.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"testEnvironment": "node"
}
}