-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "ticketman",
"description": "A simple pull-based job/ticket system contians a centeral ticket dispatcher and distributed workers. This system is written in NodeJS, runing on MongoDB",
"version": "0.2.8",
"homepage": "https://github.com/yi/node-ticket-manager",
"author": {
"name": "yi",
"email": "yi2004@gmail.com",
"url": "https://github.com/yi/"
},
"repository": {
"type": "git",
"url": "git://github.com/yi/node-ticket-manager.git"
},
"bugs": {
"url": "https://github.com/yi/node-ticket-manager/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/yi/node-ticket-manager/blob/master/LICENSE"
}
],
"main": "lib/index",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"watch": "coffee -o ./lib/ -cw ./src/",
"start": "DEBUG=ticketman* ./node_modules/.bin/nodemon lib/server.js",
"build": "distill -i ./src/server.coffee -o ./dist/ticketman-www.js",
"test": "DEBUG=ticketman* ./node_modules/.bin/mocha tests"
},
"dependencies": {
"async": "0.2.10",
"commander": ">=1.0.1",
"compression": "^1.6.2",
"connect-flash": "0.1.1",
"connect-mongo": "0.4.0",
"debug": "3.1.0",
"express": "3.4.8",
"jade": "1.1.5",
"mongoose": "4.2.10",
"mongoose-paginator": "0.2.2",
"mongoose-times": "0.1.0",
"mongoose-trashable": "0.1.2",
"oauth-sign": ">=0.4.0",
"request": ">=2.27.0",
"udid": "latest",
"underscore": "1.5.2"
},
"devDependencies": {
"nodemon": ">=1.0.14",
"chai": ">=1.2.0",
"mocha": ">=1.3.2",
"should": ">=1.1.0"
},
"keywords": [
"queue",
"ticket",
"job",
"pull"
]
}