forked from kuzzleio/kuzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.28 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
{
"name": "kuzzle",
"author": "The Kuzzle Team <[email protected]>",
"version": "1.11.0",
"description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
"main": "./lib/index.js",
"bin": {
"kuzzle": "./bin/kuzzle"
},
"scripts": {
"postinstall": "npm run build-cli",
"test": "npm run --silent lint && npm run unit-testing && npm run functional-testing",
"unit-testing": "nyc --reporter=text-summary --reporter=lcov mocha",
"functional-testing": "bash features/run.sh",
"cucumber": "cucumber.js --fail-fast",
"codecov": "codecov",
"lint": "eslint --max-warnings=0 ./lib ./test ./features",
"build-cli": "node bin/build-cli.js",
"doc-prepare": "cd doc && bash doc.sh prepare",
"doc-dev": "cd doc && bash doc.sh dev",
"doc-build": "cd doc && bash doc.sh build",
"doc-upload": "cd doc && bash doc.sh upload",
"doc-cloudfront": "cd doc && bash doc.sh cloudfront",
"doc-deploy": "npm run doc-upload && npm run doc-cloudfront",
"doc-netlify": "npm run doc-prepare && cd doc && bash doc.sh build-netlify",
"doc-error-codes": "node doc/build-error-codes"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/runtime": "^7.6.0",
"async": "^3.1.0",
"bluebird": "^3.5.5",
"bufferutil": "^4.0.1",
"busboy": "^0.3.1",
"bytes": "^3.1.0",
"cli-color": "^1.4.0",
"commander": "^3.0.1",
"debug": "^4.1.1",
"denque": "^1.4.1",
"didyoumean": "^1.2.1",
"dumpme": "^1.0.3",
"easy-circular-list": "^1.0.13",
"elasticsearch": "^16.3.0",
"eventemitter3": "^4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"ioredis": "^4.14.0",
"json-stable-stringify": "1.0.1",
"json2yaml": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"koncorde": "^2.0.0",
"kuzzle-common-objects": "^3.0.17",
"kuzzle-sdk": "^6.2.7",
"kuzzle-vault": "^1.0.1",
"lodash": "4.17.15",
"moment": "^2.24.0",
"mosca": "^2.8.3",
"ms": "^2.1.2",
"murmurhash-native": "^3.4.1",
"ndjson": "^1.5.0",
"passport": "^0.4.0",
"pm2": "^3.5.1",
"rc": "1.2.8",
"readline-sync": "^1.4.10",
"semver": "^6.3.0",
"socket.io": "2.2.0",
"sorted-array": "^2.0.4",
"stream-json": "^1.3.1",
"triple-beam": "^1.3.0",
"utf-8-validate": "^5.0.2",
"uuid": "^3.3.3",
"validator": "^11.1.0",
"winston": "^3.2.1",
"winston-elasticsearch": "0.7.12",
"winston-syslog": "2.1.0",
"winston-transport": "^4.3.0",
"ws": "^6.2.1"
},
"repository": {
"type": "git",
"url": "git://github.com/kuzzleio/kuzzle.git"
},
"devDependencies": {
"codecov": "^3.5.0",
"cucumber": "^5.1.0",
"eslint": "^5.16.0",
"minimist": "1.2.0",
"mocha": "^6.2.0",
"mock-require": "^3.0.3",
"mqtt": "^3.0.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rewire": "^4.0.1",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.4.2",
"socket.io-client": "^2.2.0",
"strip-json-comments": "^3.0.1"
},
"engines": {
"node": ">= 6.17.1"
},
"license": "Apache-2.0"
}