-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 820 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 820 Bytes
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
{
"name": "react-preview",
"version": "1.0.0",
"description": "GitHub App built with probot that generates preview links for react based projects.",
"author": "Aditya Agarwal <adityaa803@gmail.com> (adi.surge.sh)",
"license": "ISC",
"repository": "https://github.com/itaditya/react-preview.git",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"deploy": "git push heroku master"
},
"dependencies": {
"probot": "^6.0.0",
"probot-commands": "^1.0.1"
},
"devDependencies": {
"jest": "^21.2.1",
"nodemon": "^1.17.2",
"smee-client": "^1.0.1",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
}
}