-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 6.11 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
{
"name": "@leftshiftone/convey",
"version": "4.5.0",
"description": "JavaScript connector to AIOS.",
"main": "./dist/convey-std.js",
"module": "./dist/esm5/all.js",
"typings": "./dist/esm5/all.d.ts",
"es5": "./dist/esm5/all.js",
"esm5": "./dist/esm5/all.js",
"es2015": "./dist/esm2015/all.js",
"esm2015": "./dist/esm2015/all.js",
"license": "MIT",
"author": "Leftshift One Software GmbH <core-devs@leftshift.one>",
"dependencies": {
"@leftshiftone/gaia-sdk": "4.5.0",
"@zxing/library": "^0.12.4",
"browser-image-compression": "^1.0.6",
"d3": "^5.8.0",
"d3-3d": "^0.0.9",
"d3-sankey": "^0.7.1",
"d3-scale": "^2.2.2",
"d3-time": "^1.0.10",
"d3-time-format": "^2.1.3",
"d3-tip": "^0.9.1",
"flexsearch": "^0.6.32",
"leaflet": "^1.6.0",
"recordrtc": "5.5.4",
"reveal.js": "^3.8.0"
},
"devDependencies": {
"@testing-library/dom": "^7.2.0",
"@types/d3": "^5.7.0",
"@types/d3-sankey": "^0.7.4",
"@types/d3-scale": "^2.1.0",
"@types/d3-time": "^1.0.9",
"@types/d3-time-format": "^2.1.0",
"@types/d3-tip": "^3.5.5",
"@types/google-maps": "^3.2.1",
"@types/heremaps": "^3.0.15",
"@types/jest": "^24.0.11",
"@types/leaflet": "^1.5.7",
"@types/node": "^11.11.6",
"@types/sinon": "^7.0.10",
"@types/w3c-image-capture": "^1.0.2",
"@types/webrtc": "^0.0.25",
"awesome-typescript-loader": "^5.2.1",
"copyfiles": "^2.1.0",
"css-loader": "^2.1.1",
"file-loader": "^5.0.2",
"import-glob-loader": "^1.1.0",
"jest": "^24.5.0",
"jest-each": "^26.6.2",
"jest-junit": "^6.3.0",
"mini-css-extract-plugin": "^0.5.0",
"ndc": "^0.2.0",
"node-sass": "^4.11.0",
"release-it": "^10.3.1",
"sass-loader": "^7.1.0",
"shx": "^0.3.2",
"sinon": "^7.3.0",
"sonarqube-scanner": "^2.4.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typedoc": "^0.15.0",
"typescript": "~3.3.4000",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"jest-junit": {
"suiteName": "Frontend Tests",
"suiteNameTemplate": "{filename}",
"output": "build/test/TEST-junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}"
},
"scripts": {
"copy-scss": "copyfiles -u 1 ./src/**/*.scss ./dist/esm5 && copyfiles -u 1 ./src/**/*.scss ./dist/esm2015 && copyfiles -u 1 ./src/**/**/*.scss ./dist/esm5 && copyfiles -u 1 ./src/**/**/*.scss ./dist/esm2015 && copyfiles -u 1 ./src/**/**/**/*.scss ./dist/esm5 && copyfiles -u 1 ./src/**/**/**/*.scss ./dist/esm2015 && copyfiles -u 1 ./src/**/**/**/**/*.scss ./dist/esm5 && copyfiles -u 1 ./src/**/**/**/**/*.scss ./dist/esm2015",
"webpack:dev": "webpack-dev-server --open --mode=development",
"dev:local": "yarn webpack:dev --define process.env.CONVERSATION_LANGUAGE='\"de\"'",
"webpack:build": "webpack --mode=production",
"webpack:dev-build": "webpack --mode=development",
"clean": "shx rm -rf dist esm5 esm2015",
"deps": "ndc .",
"build": "tsc && tsc -m es2015 --outDir ./dist/esm2015 && npm run webpack:build && npm run copy-scss",
"lint": "tslint src/**/*.ts",
"sonarqube": "jest -w 1 --env=jsdom --coverage && sonar-scanner -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN -Dsonar.projectKey=one.leftshift.conveyjs",
"trigger-release:major": "git pull --tags && git tag release-major && git push --tags && git tag -d release-major",
"trigger-candidate:major": "git pull --tags && git tag candidate-major && git push --tags && git tag -d candidate-major",
"trigger-candidate:minor": "git pull --tags && git tag candidate-minor && git push --tags && git tag -d candidate-minor",
"trigger-release:minor": "git pull --tags && git tag release-minor && git push --tags && git tag -d release-minor",
"trigger-release:patch": "TRIGGER_TAG=$(git branch | grep \\* | cut -d ' ' -f2); git pull --tags && git tag ${TRIGGER_TAG/\\//-} && git push --tags && git tag -d ${TRIGGER_TAG/\\//-}",
"cleanup-release": "git tag -d $CIRCLE_TAG && git push -d origin $CIRCLE_TAG",
"release:major": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/ && release-it major --no-git.requireCleanWorkingDir",
"candidate:major": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/ && release-it major --preRelease=rc --no-git.requireCleanWorkingDir",
"release:minor": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/ && release-it minor --no-git.requireCleanWorkingDir",
"candidate:minor": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/ && release-it minor --preRelease=rc --no-git.requireCleanWorkingDir",
"release:patch": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/ && release-it patch --no-git.requireCleanWorkingDir",
"test": "jest -w 1",
"doc": "typedoc --options typedoc.json --out docs && zip -r ./docs/typescript-doc.zip ./docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftshiftone/conveyjs.git"
},
"keywords": [
"digital",
"assistant",
"bot",
"gaia",
"g.a.i.a.",
"leftshiftone"
],
"bugs": {
"url": "https://github.com/leftshiftone/conveyjs/issues"
},
"homepage": "https://github.com/leftshiftone/conveyjs",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"directories": {
"example": "examples"
}
}