forked from bbqsrc/oyster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
{
"name": "oyster",
"version": "0.1.0",
"description": "An online voting system.",
"main": "server.js",
"scripts": {
"test": "wdio test/wdio.conf.js",
"test:coverage": "istanbul cover wdio -- test/wdio.conf.js",
"test:coverage:upload": "cat ./coverage/coverage.json | codecov",
"prepublish": "npm run build-assets",
"build-assets": "npm run bower && npm run webpack",
"bower": "bower install bootstrap ajaxorg/ace-builds && sh scripts/post-bower.sh",
"webpack": "[ -f assets/static/js/toml.js ] || npm run webpack:toml",
"webpack:toml": "webpack -p --output-library toml --output-library-target var node_modules/toml/index.js assets/static/js/toml.js"
},
"author": "Brendan Molloy <[email protected]>",
"repository": "bbqsrc/oyster",
"homepage": "https://bbqsrc.github.io/oyster",
"license": "GPL-3.0",
"dependencies": {
"co": "^4.6.0",
"extend": "^3.0.0",
"handlebars": "^3.0.3",
"huggare": "^0.3.0",
"jade": "^1.11.0",
"koa": "^1.0.0",
"koa-better-body": "^1.0.17",
"koa-helmet": "^0.2.0",
"koa-huggare": "~0.1.1",
"koa-i18n": "^1.1.0",
"koa-locale": "^1.0.0",
"koa-passport": "^1.1.6",
"koa-router": "^5.1.2",
"koa-send": "^1.3.1",
"koa-session": "^3.3.1",
"koa-views": "^3.1.0",
"lodash": "^3.10.1",
"marked": "^0.3.5",
"minimist": "^1.1.2",
"moment": "^2.10.3",
"mongoose": "^4.1.8",
"mz": "^2.0.0",
"node-schedule": "^0.2.9",
"node-uuid": "^1.4.3",
"nodemailer": "^1.4.0",
"nodemailer-ses-transport": "^1.3.0",
"passport-mongodb": "^1.2.0",
"resolve-path": "^1.3.0",
"tomlify-j0.4": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"bower": "^1.5.3",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"codecov.io": "^0.1.6",
"eslint": "^1.0.0",
"eslint-plugin-react": "^3.4.2",
"istanbul": "^0.3.21",
"mocha": "^2.3.3",
"react": "^0.13.3",
"supertest": "^1.1.0",
"toml": "^2.3.0",
"webdriverio": "^3.2.4",
"webpack": "^1.12.2"
},
"publishConfig": {
"registry": "http://npm.brendan.so"
},
"engines": {
"iojs": ">= 2.6.0",
"node": ">= 0.12.0"
}
}