-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
34 lines (34 loc) · 1.17 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
{
"name": "@eclipse-ditto/ditto-javascript-client",
"version": "3.6.0",
"description": "A library supporting you to work with the APIs of Eclipse Ditto 3.x.",
"author": "Eclipse Ditto committers <[email protected]>",
"repository": "https://github.com/eclipse-ditto/ditto-clients",
"license": "EPL-2.0",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --no-ci",
"clean": "npm run clean:artifacts && npm run clean:packages",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"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": "lerna run lint --stream"
},
"devDependencies": {
"lerna": "^5.5.0"
},
"keywords": [
"ditto",
"eclipse",
"eclipseditto",
"client",
"iot"
]
}