forked from PrestaShop/issuebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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": "issuebot",
"version": "0.1.0",
"description": "Github App to automate PrestaShop project workflow",
"author": "PrestaShop",
"license": "MIT",
"repository": "https://github.com/PrestaShop/issuebot.git",
"homepage": "https://github.com/PrestaShop/issuebot",
"bugs": "https://github.com/PrestaShop/issuebot",
"keywords": [
"probot",
"github",
"probot-app",
"prestashop"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "eslint -c .eslintrc.js --ext .js .",
"lint-fix": "eslint -c .eslintrc.js --ext .js . --fix",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/auth-app": "^2.4.2",
"@octokit/graphql": "^4.3.1",
"dom-parser": "^0.1.6",
"probot": "^9.6.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prestashop": "0.0.2",
"jest": "^24.9.0",
"nock": "^11.4.0",
"nodemon": "^2.0.0",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}