-
Notifications
You must be signed in to change notification settings - Fork 349
/
package.json
122 lines (122 loc) · 3.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@horizon/client",
"version": "2.0.0",
"description": "RethinkDB Horizon is an open-source developer platform for building realtime, scalable web apps.",
"scripts": {
"coverage": "cross-env NODE_ENV=test nyc mocha test/test.js",
"dev": "webpack --watch --progress --colors",
"devtest": "nodemon --watch dist --exec 'npm test -- --reporter dot && npm run lint -s'",
"builddebug": "webpack --progress --colors --display-modules --display-reasons",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"compile": "node ./scripts/compile.js",
"lint": "eslint src",
"test": "mocha dist/test.js --inline-diffs --timeout 10000",
"prepublish": "npm run compile && npm run build"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"core-js": "^2.1.0",
"deep-equal": "^1.0.1",
"es6-promise": "^3.2.1",
"is-plain-object": "^2.0.1",
"rxjs": "5.0.0-beta.11",
"snake-case": "^2.1.0",
"ws": "^1.1.0"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.0-beta",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^2.0.0",
"eslint": "^7.3.1",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.2",
"lodash.clonedeep": "^4.4.1",
"lodash.sortby": "^4.6.1",
"mocha": "^2.5.3",
"nodemon": "^1.9.1",
"nyc": "^7.0.0",
"shelljs": "^0.7.0",
"source-map-support": "^0.4.0",
"webpack": "^1.12.14"
},
"main": "lib/index.js",
"jsmain:next": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rethinkdb/horizon.git"
},
"author": "RethinkDB",
"license": "ISC",
"bugs": {
"url": "https://github.com/rethinkdb/horizon/issues"
},
"homepage": "https://github.com/rethinkdb/horizon",
"files": [
"dist/horizon.js",
"dist/horizon.js.map",
"dist/horizon-dev.js",
"dist/horizon-dev.js.map",
"dist/horizon-core.js",
"dist/horizon-core.js.map",
"dist/horizon-core-dev.js",
"dist/horizon-core-dev.js.map",
"lib/*"
],
"babel": {
"presets": [
"es2015-loose",
{
"plugins": [
[
"transform-runtime",
{
"polyfill": false
}
]
]
}
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"all": true,
"statements": 82.02,
"branches": 72.51,
"functions": 87.42,
"lines": 81.89,
"cache": true,
"check-coverage": true,
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": false,
"instrument": false
}
}