-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
136 lines (136 loc) · 4.8 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "kuzzle",
"author": "The Kuzzle Team <[email protected]>",
"version": "2.37.1",
"description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
"bin": "bin/start-kuzzle-server",
"scripts": {
"preinstall": "node ./check-node-version.js",
"build": "tsc",
"clean": "touch index.ts && npm run build | grep TSFILE | cut -d' ' -f 2 | xargs rm",
"cucumber": "cucumber.js --fail-fast",
"dev": "ergol docker/scripts/start-kuzzle-dev.ts -c ./config/ergol.config.json",
"doc-error-codes": "node -r ts-node/register doc/build-error-codes",
"prepublishOnly": "npm run build",
"prettier": "prettier ./lib ./test ./features ./plugins/available/functional-test-plugin --write",
"test:functional:http": "KUZZLE_PROTOCOL=http cucumber-js --profile http",
"test:functional:jest": "jest",
"test:functional:legacy:http": "cucumber-js --format progress-bar --profile http ./features-legacy",
"test:functional:legacy:mqtt": "cucumber-js --format progress-bar --profile mqtt ./features-legacy",
"test:functional:legacy:websocket": "cucumber-js --format progress-bar --profile websocket ./features-legacy",
"test:functional:legacy": "npm run test:functional:legacy:http && npm run test:functional:legacy:websocket && npm run test:functional:legacy:mqtt",
"test:functional:websocket": "KUZZLE_PROTOCOL=websocket cucumber-js --profile websocket",
"test:functional": "npm run test:functional:http && npm run test:functional:websocket && npm run test:functional:jest",
"test:lint": "eslint ./lib ./test ./bin ./features ./plugins/available/functional-test-plugin",
"test:unit": "npx mocha --exit",
"test": "npm run clean && npm run --silent test:lint && npm run build && npm run test:unit:coverage && npm run test:functional"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"aedes": "0.51.3",
"bluebird": "3.7.2",
"cli-color": "2.0.4",
"cookie": "1.0.2",
"debug": "4.4.0",
"denque": "2.1.0",
"didyoumean": "1.2.2",
"dumpme": "1.0.3",
"eventemitter3": "5.0.1",
"inquirer": "12.3.0",
"ioredis": "5.4.2",
"js-yaml": "4.1.0",
"json-stable-stringify": "1.2.1",
"json2yaml": "1.1.0",
"jsonwebtoken": "9.0.2",
"koncorde": "4.4.0",
"kuzzle-plugin-auth-passport-local": "6.4.1",
"kuzzle-plugin-logger": "3.0.3",
"kuzzle-sdk": "^7.14.0",
"kuzzle-vault": "2.1.0",
"lodash": "4.17.21",
"long": "5.2.3",
"moment": "2.30.1",
"ms": "2.1.3",
"murmurhash": "2.0.1",
"ndjson": "2.0.0",
"passport": "0.7.0",
"protobufjs": "7.4.0",
"rc": "1.2.8",
"sdk-es7": "npm:@elastic/[email protected]",
"sdk-es8": "npm:@elastic/[email protected]",
"semver": "7.6.3",
"sorted-array": "2.0.4",
"uuid": "11.0.4",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.51.0.tar.gz",
"validator": "13.12.0",
"winston": "3.17.0",
"winston-elasticsearch": "0.19.0",
"winston-syslog": "2.7.1",
"winston-transport": "4.9.0",
"yargs": "17.7.2",
"zeromq": "6.0.0-beta.6"
},
"repository": {
"type": "git",
"url": "git://github.com/kuzzleio/kuzzle.git"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@types/bluebird": "3.5.42",
"@types/cookie": "1.0.0",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.14",
"@types/mocha": "^10.0.10",
"async": "3.2.6",
"chokidar": "4.0.3",
"cucumber": "6.0.7",
"cz-conventional-changelog": "3.3.0",
"ergol": "1.0.2",
"eslint-plugin-kuzzle": "0.0.13",
"jest": "29.7.0",
"mocha": "11.0.1",
"mock-require": "3.0.3",
"mqtt": "5.10.3",
"nyc": "17.1.0",
"request": "2.88.2",
"request-promise": "4.2.6",
"rewire": "5.0.0",
"semantic-release-config-kuzzle": "1.0.0",
"semantic-release-slack-bot": "4.0.2",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "19.0.2",
"strip-json-comments": "https://github.com/sindresorhus/strip-json-comments/archive/refs/tags/v3.1.1.tar.gz",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.3.2",
"yaml": "2.7.0"
},
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"engineStrict": true,
"license": "Apache-2.0",
"files": [
"check-node-version.js",
"index.d.ts",
"index.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.proto",
"lib/**/*.yaml",
"LICENSE.md",
"package.json",
"README.md"
]
}