-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 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
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
84
{
"name": "puart",
"private": true,
"version": "0.0.1-SNAPSHOT",
"description": "PUART renewal",
"dependencies": {
"assert": "^1.3.0",
"bcrypt": "~0.8.5",
"bluebird": "~2.3.11",
"body-parser": "~1.0.2",
"co": "~4.5.1",
"config": "~0.4.19",
"connect-disable-304": "*",
"connect-flash": "^0.1.1",
"connect-multiparty": "^2.0.0",
"cookie-parser": "^1.3.3",
"cors": "~2.5.2",
"crypto": "0.0.3",
"csurf": "~1.8.3",
"debug": "~2.1.0",
"easyimage": "^2.1.0",
"ellipsize": "0.0.2",
"express": "~4.1.0",
"express-paginate": "~0.1.0",
"express-session": "^1.9.1",
"fs-extra": "^0.24.0",
"glob": "~3.2.9",
"gm": "~1.16.0",
"inflection": "~1.3.5",
"jade": "^1.7.0",
"kue": "~0.10.3",
"less": "^1.7.5",
"less-middleware": "^1.0.4",
"lodash": "~2.4.1",
"mkdirp": "^0.5.0",
"mobile-detect": "^1.2.0",
"moment": "~2.9.0",
"morgan": "~1.5.3",
"mysql": "~2.0.1",
"net": "^1.0.2",
"oauth": "~0.9.11",
"oauth2orize": "~1.0.1",
"on-finished": "^2.3.0",
"passport": "git://github.com/easi6/passport.git#master",
"passport-http": "0.2.x",
"passport-http-bearer": "0.2.x",
"passport-local": "~1.0.0",
"passport-oauth2-client-password": "0.1.x",
"passport-remember-me": "0.0.1",
"sequelize": "~3.18.0",
"serve-static": "1.5.3",
"tmp": "0.0.28",
"winston": "^1.0.0"
},
"devDependencies": {
"co-mocha": "^1.1.2",
"coffee-script": "~1.7.1",
"express-livereload": "0.0.24",
"mocha": "~1.21.3",
"sequelize-fixtures": "0.4.0",
"should": "~3.3.1",
"supertest": "^1.0.1"
},
"scripts": {
"start": "coffee server.coffee",
"mailer": "coffee workers/email_worker.coffee",
"image": "coffee workers/image_worker.coffee",
"push": "coffee workers/push_worker.coffee",
"debug": "node debug app.js",
"doc": "rm -rf docs; find . -name '*.coffee' -not -path \"./node_modules/*\" | xargs docco",
"tag": "coffeetags -R -f TAGS",
"tags": "coffeetags -R -f TAGS",
"_server_test_bg": "rm -f .server.test.pid; NODE_ENV=test nohup npm start < /dev/null > server.test.log 2>&1 &",
"_wait_test_pid": "while ! `ls .server.test.pid > /dev/null 2>&1`; do sleep 1; done;",
"_kill_test_server": "kill -2 `cat .server.test.pid`; exit 0",
"pretest": "npm run _kill_test_server",
"test": "npm run _server_test_bg && npm run _wait_test_pid; NODE_ENV=test node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --reporter spec",
"posttest": "npm run _wait_test_pid; kill -2 `cat .server.test.pid`; rm .server.test.pid"
},
"main": "server.coffee",
"repository": "",
"author": "drunkhacker@easi6, Inc.",
"license": ""
}