forked from webex/webex-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.84 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
{
"name": "@webex/plugin-messages",
"description": "",
"license": "MIT",
"main": "dist/index.js",
"devMain": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/webex/webex-js-sdk.git",
"directory": "packages/@webex/plugin-messages"
},
"engines": {
"node": ">=16"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@webex/babel-config-legacy": "workspace:*",
"@webex/eslint-config-legacy": "workspace:*",
"@webex/jest-config-legacy": "workspace:*",
"@webex/legacy-tools": "workspace:*",
"@webex/test-helper-chai": "workspace:*",
"@webex/test-helper-file": "workspace:*",
"@webex/test-helper-mocha": "workspace:*",
"@webex/test-helper-mock-webex": "workspace:*",
"@webex/test-helper-test-users": "workspace:*",
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"sinon": "^9.2.4"
},
"dependencies": {
"@webex/common": "workspace:*",
"@webex/internal-plugin-conversation": "workspace:*",
"@webex/internal-plugin-device": "workspace:*",
"@webex/internal-plugin-mercury": "workspace:*",
"@webex/plugin-logger": "workspace:*",
"@webex/plugin-people": "workspace:*",
"@webex/plugin-rooms": "workspace:*",
"@webex/webex-core": "workspace:*",
"debug": "^4.3.4",
"lodash": "^4.17.21"
},
"scripts": {
"build": "yarn build:src",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
"deploy:npm": "yarn npm publish",
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
"test:browser": "webex-legacy-tools test --integration --runner karma",
"test:integration": "webex-legacy-tools test --integration --runner mocha",
"test:style": "eslint ./src/**/*.*"
}
}