-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "sintef-ditto-nodejs-client",
"version": "0.0.1",
"description": "An extended version of the official Eclipse Ditto Node.js client",
"author": "rdautov",
"repository": {
"type": "git",
"url": "git+https://github.com/SINTEF-9012/sintef-ditto-nodejs-client.git"
},
"license": "MIT",
"private": false,
"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"
],
"dependencies": {
"@eclipse-ditto/ditto-javascript-client": "file:",
"sintef-ditto-javascript-client": "file:",
"sintef-ditto-nodejs-client": "file:"
},
"bugs": {
"url": "https://github.com/SINTEF-9012/sintef-ditto-nodejs-client/issues"
},
"homepage": "https://github.com/SINTEF-9012/sintef-ditto-nodejs-client#readme",
"main": "index.js",
"directories": {
"lib": "lib"
}
}