-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "@eclipse-ditto/ditto-javascript-client",
"version": "3.9.0",
"description": "A library supporting you to work with the APIs of Eclipse Ditto 3.x.",
"author": "Eclipse Ditto committers <ditto-dev@eclipse.org>",
"repository": "https://github.com/eclipse-ditto/ditto-clients",
"license": "EPL-2.0",
"private": true,
"type": "module",
"workspaces": [
"lib/*"
],
"scripts": {
"clean": "npm run clean:artifacts && npm run clean:packages",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "rm -rf lib/*/node_modules node_modules",
"build": "lerna run build --stream --concurrency=1",
"test": "lerna run test --stream --concurrency=1",
"test:full": "lerna run test:full",
"test:coverage": "lerna run test:coverage --parallel",
"test:watch": "lerna run test:watch --parallel",
"release": "lerna publish --yes --force-publish=*",
"update-version": "lerna version --no-git-tag-version --no-push --force-publish=*",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.0.0",
"eslint-plugin-yet-another-license-header": "^0.2.0",
"lerna": "^9.0.3",
"typescript-eslint": "^8.0.0"
},
"keywords": [
"ditto",
"eclipse",
"eclipseditto",
"client",
"iot"
]
}