-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1014 Bytes
/
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
{
"name": "isomorphine",
"version": "0.10.2",
"description": "Access server-side modules from the browser, remotely.",
"main": "index.js",
"scripts": {
"test": "node node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-oliveros/isomorphine.git"
},
"keywords": [
"rpc",
"webpack",
"loader",
"remote",
"proxy",
"isomorphic",
"morphic",
"model"
],
"author": "David Oliveros",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-oliveros/isomorphine/issues"
},
"homepage": "https://github.com/d-oliveros/isomorphine#readme",
"browser": {
"./index.js": "./browser.js"
},
"dependencies": {
"body-parser": "^1.13.3",
"debug": "^2.2.0",
"es6-promise": "^3.0.2",
"express": "^4.13.3",
"http-errors": "^1.3.1",
"superagent": "^2.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"es6-promise": "^3.0.2",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}