forked from rethinkdb/horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "horizon",
"version": "1.0.3",
"description": "An open-source developer platform for building realtime, scalable web apps.",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rethinkdb/horizon.git"
},
"scripts": {
"lint": "eslint src test",
"test": "mocha test test/unit --timeout 10000",
"coverage": "istanbul cover _mocha test"
},
"author": "RethinkDB",
"license": "MIT",
"bin": {
"hz": "src/main.js",
"horizon": "src/main.js"
},
"bugs": {
"url": "https://github.com/rethinkdb/horizon/issues"
},
"homepage": "https://github.com/rethinkdb/horizon#readme",
"dependencies": {
"@horizon/server": "1.0.3",
"argparse": "^1.0.3",
"chalk": "^1.1.3",
"hasbin": "^1.2.1",
"joi": "^8.0.5",
"jsonwebtoken": "^5.5.4",
"mime-types": "^2.0.4",
"rethinkdb": "^2.1.1",
"open": "0.0.5",
"toml": "^2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.3.0",
"istanbul": "^0.4.3",
"mocha": "2.4.5",
"mock-fs": "3.8.0",
"sinon": "1.17.3",
"toml": "^2.3.0"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"preferGlobal": true
}