-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "classroom-bot-issues",
"version": "1.0.0",
"description": "Copies open issues from starter repository to student assignment repositories",
"author": "Chad Fawcett <[email protected]> (https://github.com/chadfawcett/classroom-bot-issues)",
"license": "ISC",
"repository": "https://github.com//classroom-bot-issues.git",
"homepage": "https://github.com//classroom-bot-issues",
"bugs": "https://github.com//classroom-bot-issues/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "npm run prettier-check && npm run eslint && LOG_LEVEL=fatal jest",
"test:watch": "LOG_LEVEL=fatal jest --watch",
"eslint": "eslint '**/*.js'",
"prettier": "prettier --write '**/*.js'",
"prettier-check": "prettier --list-different '**/*.js'"
},
"dependencies": {
"@chadfawcett/probot-serverless-now": "0.0.1",
"probot": "^7.2.0"
},
"devDependencies": {
"@twostoryrobot/eslint-config": "^2.2.0",
"@twostoryrobot/prettier-config": "^2.0.1",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^22.4.3",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"prettier": "^1.15.3",
"smee-client": "^1.0.2"
},
"engines": {
"node": ">= 8.3.0"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}