-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "msgflo-example-imageresize",
"version": "0.0.1",
"description": "Image resizing service built with MsgFlo",
"main": "index.js",
"engines": {
"node": "6.x"
},
"scripts": {
"test": "mocha --reporter spec --compilers .coffee:coffee-script/register tests/*.coffee",
"start": "msgflo --ignore store --graph graphs/imageresize.fbp",
"procfile": "msgflo-procfile --ignore store graphs/imageresize.fbp > Procfile",
"postinstall": "npm run procfile && npm run build",
"build": "webpack --config webpack.config.js",
"knex": "knex migrate:latest",
"bind": "msgflo-setup --participants=true --ignore store graphs/imageresize.fbp",
"setup": "npm run knex && npm run bind"
},
"msgflo": {
"namespace": "imageresize",
"components": {
"imageresize/HttpApi": "node index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/msgflo/msgflo-example-imageresize.git"
},
"keywords": [
"image",
"image",
"processing",
"scaling",
"resize",
"thumbnail"
],
"author": "Jon Nordby <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/msgflo/msgflo-example-imageresize/issues"
},
"homepage": "https://github.com/msgflo/msgflo-example-imageresize#readme",
"dependencies": {
"amqplib": "^0.5.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cheerio": "^0.22.0",
"coffee-script": "^1.12.4",
"express": "^4.15.2",
"knex": "^0.12.9",
"knox": "^0.9.2",
"msgflo": "^0.10.8",
"msgflo-nodejs": "^0.10.1",
"pg": "^6.1.5",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"sharp": "^0.17.3",
"uuid": "^3.0.1",
"arrivals": "^2.1.0",
"browser-process-hrtime": "^0.1.2",
"chai": "^3.5.0",
"coffee-loader": "^0.7.3",
"mocha": "^3.2.0",
"webpack": "^2.3.3"
},
"devDependencies": {
}
}