-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "zeobot",
"version": "1.2.0",
"description": "ZeoBot is a tool that helps you to automate your repos",
"main": "server.js",
"scripts": {
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) DEBUG=probot* npm start",
"start": "probot run ./src/server.js",
"lint": "prettier --check '{lib,test}/**/*.js' *.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.js' *.md package.json",
"pretest": "npm run -s lint",
"test": "tap --100 'test/{integration,unit}/*-test.js'",
"coverage": "tap --coverage-report=html"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@babel/runtime": "^7.2.0",
"@hapi/joi": "^15.0.0",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"async": "^3.0.1",
"chalk": "^3.0.0",
"compare-versions": "3.6.0",
"compromise": "^11.13.0",
"debug": "^4.2.0",
"email-validator": "^2.0.3",
"escape-string-regexp": "4.0.0",
"hbs": "^4.1.0",
"inquirer": "^6.2.1",
"js-yaml": "^3.14.0",
"jsdom": "^11.3.0",
"json-fixer": "^1.3.1-0",
"lodash": "^4.17.11",
"minimatch": "^3.0.4",
"moment": "2.22.2",
"node-fetch": "^2.6.1",
"parse-diff": "^0.6.0",
"pify": "^4.0.1",
"probot": "^9.14.1",
"probot-attachments": "github:probot/attachments",
"probot-config": "^0.1.0",
"probot-scheduler": "^1.2.0",
"regex-parser": "2.2.10",
"request": "^2.72.0",
"semver": "7.3.2",
"typescript": "^3.2.2",
"unfurl.js": "^5.1.0",
"yargs": "^15.0.1"
},
"devDependencies": {
"@octokit/rest": "^17.0.0",
"nock": "^13.0.4",
"prettier": "^2.0.5",
"simple-mock": "^0.8.0",
"tap": "^14.10.8"
},
"engines": {
"node": "12.0.0"
},
"repository": {
"url": "https://github.com/zeoflow/zeoblot"
},
"license": "Apache-2.0",
"files": [
"src"
]
}