-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.45 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.45 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
{
"name": "api-server",
"description": "api-server",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "http://github.com/CodeNow/api-server.git"
},
"private": true,
"dependencies": {
"101": "~0.1.0",
"async": "~0.2.10",
"bcrypt": "~0.7.5",
"callback-count": "~0.1.0",
"concat-stream": "~1.4.1",
"connect-datadog": "0.0.5",
"dat-middleware": "~1.0.2",
"debug": "~0.7.2",
"docker-mock": "0.0.8",
"dockerode": "~2.2.10",
"dogerode": "0.0.3",
"email": "0.2.5",
"eson": "~0.4.1",
"exists": "~1.0.0",
"express": "^3.5.1",
"fn-object": "~0.2.2",
"fstream": "~0.1.24",
"function-proxy": "~0.5.1",
"github-nabber": "0.0.2",
"jscoverage": "0.3.8",
"keypather": "~1.4.0",
"lodash": "~1.3.1",
"mailchimp": "~1.1.0",
"map-utils": "~0.2.0",
"middleware-flow": "~0.8.0",
"mkdirp": "~0.3.5",
"mongoose": "3.8.9",
"mongoose-text-search": "0.0.2",
"multiparty": "~3.2.2",
"newrelic": "~1.4.0",
"node-uuid": "~1.4.0",
"nodemailer": "~2.4.2",
"nodemailer-sendgrid-transport": "^0.2.0",
"pluck": "0.0.4",
"query-string": "~0.3.0",
"redis": "~0.8.3",
"request": "~2.21.0",
"rimraf": "~2.1.4",
"rollbar": "~0.3.8",
"simple-api-client": "~0.2.3",
"tar": "~2.2.1",
"underscore.inflections": "~0.2.1"
},
"devDependencies": {
"nodemon": "~0.7.8",
"mongodb": "~1.3.9",
"supertest": "~0.8.2",
"jshint": "~2.4.1",
"console-trace": "git://github.com/numbcoder/console-trace.git",
"should": "~2.1.1",
"mocha": "~1.17.0",
"osx-notifier": "~0.2.1",
"methods": "~0.1.0",
"findit": "~1.1.0"
},
"engine": "node >= 0.10.5",
"scripts": {
"start": "node ./lib/configs.js && NODE_PATH=./lib node server.js",
"watch": "NODE_PATH=./lib nodemon -w lib -w configs -q server.js",
"testwatch": "NODE_PATH=./lib nodemon --delay 1 -w lib -w test -w configs -x npm test",
"coverage": "bash ./scripts/run_coverage.sh",
"test": "npm run lint && NODE_ENV=testing NODE_PATH=./lib mocha -t 5000 -g 'channels|files|categories|containers-tags|containers|feeds|image-pagination|images|implementations|specifications|votes|Base|Users|Tokens'",
"test-debug": "npm run lint && NODE_ENV=testing NODE_PATH=./lib mocha --debug-brk",
"test-int": "npm run lint && NODE_ENV=testing-integration NODE_PATH=./lib mocha --timeout 20000",
"clean": "rm -rf ./coverage",
"lint": "jshint ."
}
}