-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "imgflo-server",
"version": "0.6.0",
"description": "",
"keywords": [
"fbp",
"noflo",
"GEGL",
"flowhub",
"graphics",
"dataflow",
"image processing"
],
"author": "Jon Nordby <[email protected]> (http://www.jonnor.com)",
"repository": {
"type": "git",
"url": "https://github.com/imgflo/imgflo-server.git"
},
"bugs": "https://github.com/imgflo/imgflo-server/issues",
"homepage": "https://github.com/imgflo/imgflo-server/",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node index.js",
"postinstall": "./node_modules/.bin/noflo-cache-preheat",
"test": "mocha --reporter spec --compilers .coffee:coffee-script/register ./spec/*.coffee"
},
"bin": {
"imgflo-server-application-add": "./bin/imgflo-server-application-add"
},
"engines": {
"node": ">=4.2.0 <4.7.0"
},
"dependencies": {
"amqplib": "^0.4.1",
"async": "^0.7.0",
"coffee-script": "^1.7.1",
"express": "^4.12.3",
"fbp": "^1.5.0",
"knex": "^0.7.6",
"knox": "^0.9.1",
"mime-types": "^2.1.7",
"msgflo": "^0.9.1",
"msgflo-nodejs": "^0.7.2",
"newrelic": "^1.25.5",
"node-static": "^0.7.3",
"noflo": "~0.5.18",
"noflo-canvas": "^0.2.0",
"noflo-core": "^0.1.11",
"noflo-geometry": "automata/noflo-geometry",
"noflo-image": "0.2.0",
"noflo-math": "0.0.6",
"noflo-md5": "automata/noflo-md5",
"noflo-objects": "^0.1.12",
"noflo-seedrandom": "automata/noflo-seedrandom",
"noflo-strings": "~0.1.9",
"pg": "^6.0.3",
"redis": "^0.12.1",
"request": "^2.36.0",
"source-map-support": "^0.4.0",
"temp": "^0.8.3",
"tmp": "0.0.24",
"uuid": "^2.0.1",
"coffee-loader": "^0.7.2",
"json-loader": "^0.5.4",
"webpack": "^1.12.14",
"sqlite3": "^3.0.5",
"websocket": "~1.0.8"
},
"devDependencies": {
"simple-statistics": "^0.9.0",
"chai": "^3.5.0",
"js-yaml": "^3.0.2",
"mocha": "^3.1.2"
},
"msgflo": {
"variables": {},
"components": {
"imgflo-server/ProcessImage": "node build/worker.js #ROLE",
"imgflo-server/HttpApi": "node web.js"
}
}
}