-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
119 lines (119 loc) · 3.39 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
{
"name": "@webex/component-adapter-interfaces",
"version": "1.30.20",
"description": "Adapter interfaces for Webex Components (https://github.com/webex/components)",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "rollup -c ./rollup.config.js && rollup -c ./rollup.webexcalling-config.js",
"prettier": "prettier --check \"src/**/*.*(js)\"",
"prettier:write": "prettier --write \"src/**/*.*(js)\"",
"release": "semantic-release",
"release:debug": "semantic-release --debug",
"release:dry-run": "semantic-release --dry-run",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:eslint": "eslint src/"
},
"repository": {
"type": "git",
"url": "https://github.com/webex/component-adapter-interfaces.git"
},
"publishConfig": {
"tag": "latest",
"access": "public"
},
"files": [
"dist/**"
],
"devDependencies": {
"@changesets/cli": "2.22.0",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/rollup-plugin-peer-deps-external": "^2",
"eslint": "8.31.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsdoc": "^39.6.4",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"plop": "^3.1.1",
"prettier": "2.5.1",
"rollup": "^2.75.7",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-config-webex-int": "*",
"typescript": ">=3.0.0",
"workspace": "^0.0.1-preview.1",
"@babel/core": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"semantic-release": "^18.0.0"
},
"dependencies": {
"build": "^0.1.4",
"check": "^1.0.0",
"jest": "^29.3.1",
"jest-junit": "15.0.0",
"run": "^1.4.0",
"ts-jest": "29.0.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
[
"lower-case",
"pascal-case"
]
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test:eslint",
"pre-push": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/webex-component-adapter-interfaces.es.min.js",
"label": "Webex ECMAScript (ESM) minified bundle"
},
{
"path": "dist/webex-component-adapter-interfaces.umd.min.js",
"label": "Webex Universal Module Definition (UMD) minified bundle"
},
{
"path": "dist/esm/webex-calling-component-adapter-interfaces.min.js",
"label": "Webex calling ECMAScript (ESM) minified bundle"
}
]
}
]
]
}
}