-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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
{
"name": "@melonade/melonade-client",
"version": "0.6.8",
"description": "",
"engines": {
"node": ">= 10.13 <11"
},
"main": "./build/index.js",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean & tsc -p tsconfig.release.json",
"build:watch": "npm run clean & tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"author": "NV4RE",
"license": "Apache-2.0",
"dependencies": {
"@melonade/melonade-declaration": "^0.19.2",
"axios": "^0.21.1",
"node-rdkafka": "^2.10.0",
"promise-timeout": "^1.3.0",
"ramda": "^0.26.1",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^10.17.5",
"@types/promise-timeout": "^1.3.0",
"@types/ramda": "^0.26.33",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"rimraf": "^2.6.3",
"ts-jest": "^26.2.0",
"ts-node": "^8.5.0",
"tslint": "~5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.14.0",
"typescript": "^3.9.7"
}
}