-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
{
"name": "apey-eye",
"version": "0.0.5",
"description": "An Object-Resource Mapping Node REST Framework",
"main": "./build/apey-eye/index.js",
"author": "GlazedSolutions",
"license": "MIT",
"homepage": "https://github.com/glazedSolutions/apey-eye",
"repository": {
"type": "git",
"url": "https://github.com/glazedSolutions/apey-eye"
},
"keywords": [
"hapi",
"async",
"es7",
"rest",
"http",
"framework",
"rethinkdb",
"web",
"orm",
"decorators",
"swagger"
],
"bugs": {
"url": "https://github.com/glazedSolutions/apey-eye/issues"
},
"scripts": {
"build": "node node_modules/gulp/bin/gulp.js babel",
"postinstall" : "npm run-script build",
"test-cov": "node --harmony node_modules/istanbul-harmony/lib/cli.js cover node_modules/mocha/bin/_mocha ./build/test",
"test" : "node --harmony node_modules/mocha/bin/_mocha ./build/test",
"start-koa": "node --harmony build/example/index-koa.js",
"start-hapi": "node --harmony build/example/index-hapi.js"
},
"dependencies": {
"async": "^0.9.0",
"babel-runtime": "^5.4.7",
"bluebird": "^2.9.20",
"boom": "^2.7.1",
"co": "^4.5.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"hapi": "^8.4.0",
"hapi-async-handler": "^1.0.2",
"hapi-swagger": "^0.7.3",
"koa": "^0.18.1",
"koa-body-parser": "^1.1.1",
"koa-compose": "^2.3.0",
"koa-generic-session": "^1.8.0",
"koa-mount": "^1.3.0",
"koa-passport": "^1.1.6",
"koa-router": "^4.2.0",
"negotiator": "^0.5.1",
"passport": "^0.2.1",
"passport-http": "^0.2.2",
"passport-local": "^1.0.0",
"request-promise": "^0.4.2",
"rethinkdbdash": "^1.16.12",
"shortid": "^2.2.2",
"underscore": "^1.8.2",
"util": "^0.10.3",
"chai": "^2.1.1",
"chai-as-promised": "^4.3.0",
"chai-things": "^0.2.0",
"istanbul": "^0.3.13",
"istanbul-harmony": "^0.3.12",
"mocha": "^2.2.4",
"mochawait": "^2.0.0"
}
}