-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "scene-stealer",
"version": "1.0.10",
"description": "An HTTP Interface to take a screenshot via puppeteer of a part of a website and send it to you via slack",
"main": "index.js",
"bin": {
"scene-stealer": "./index.js"
},
"scripts": {
"watch": "nodemon index.js",
"test": "mocha -b --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rainist/scene-stealer.git"
},
"keywords": [
"puppeteer",
"gcs",
"slack",
"screenshot"
],
"author": "Heechul Ryu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rainist/scene-stealer/issues"
},
"homepage": "https://github.com/Rainist/scene-stealer#readme",
"dependencies": {
"@google-cloud/storage": "1.5.2",
"body-parser": "1.18.2",
"express": "4.16.2",
"lodash": "4.17.11",
"moment": "2.20.1",
"performance-now": "2.1.0",
"puppeteer": "1.8.0",
"request": "2.83.0",
"request-promise": "4.2.2",
"rxjs": "^5.5.8"
},
"devDependencies": {
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"supertest": "^3.0.0"
}
}