-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 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
{
"name": "worker-screenshot",
"version": "1.0.1",
"description": "Service to capture requests for image capture",
"main": "index.js",
"scripts": {
"start": "GCLOUD_KEYFILE=../infrastructure/secrets/cloudytimemachine-storage-015d01ce2176.json GCLOUD_PROJECT=cloudytimemachine node index.js",
"test": "BUCKET_NAME=worker_screenshot_unit_tests GCLOUD_KEYFILE=../infrastructure/secrets/cloudytimemachine-storage-015d01ce2176.json GCLOUD_PROJECT=cloudytimemachine mocha && npm run standard",
"test-circleci": "BUCKET_NAME=worker_screenshot_unit_tests GCLOUD_KEYFILE=./gcloud_key.json GCLOUD_PROJECT=cloudytimemachine mocha && npm run standard",
"standard": "semistandard"
},
"repository": "https://github.com/cloudytimemachine/worker-screenshot",
"author": "Ross Kukulinski <ross@kukulinski.com>",
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"bull": "^1.0.0-rc2",
"bunyan": "^1.8.1",
"gcloud": "^0.36.0",
"http-shutdown": "^1.1.0",
"pkginfo": "^0.4.0",
"pump": "^1.0.1",
"pumpify": "^1.3.5",
"restify": "^4.1.0",
"restify-errors": "^4.2.3",
"screenshot-stream": "^4.0.1",
"sharp": "^0.16.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"k8s-scripts": "^3.0.0",
"mocha": "^3.0.2",
"semistandard": "^9.0.0",
"should": "^11.1.0",
"superagent": "^2.3.0"
},
"semistandard": {
"globals": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"describe",
"it"
]
}
}