forked from Rahmeen14/first-timers-only-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
{
"name": "first-timers-only-app",
"version": "1.0.0",
"description": "First Probot app by team $we init for RGSoC-2018",
"author": "rahmeen and akshita <rahmeenwill99@gmail.com> (https://github.com/probot/first-timers-only-app)",
"license": "ISC",
"repository": "https://github.com/Rahmeen14/first-timers-only-app.git",
"homepage": "https://github.com/Rahmeen14/first-timers-only-app",
"bugs": "https://github.com/Rahmeen14/first-timers-only-app/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"prepush": "npm run test"
},
"dependencies": {
"probot": "^7.0.0"
},
"jest": {
"testURL": "http://localhost:1234"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"prettier": "1.13.7",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}