forked from webex/sdk-component-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.18 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
{
"name": "@webex/sdk-component-adapter",
"version": "1.20.0",
"main": "dist/webexSDKComponentAdapter.esm.js",
"module": "dist/webexSDKComponentAdapter.esm.js",
"scripts": {
"build": "rollup -c",
"clear": "rm package-lock.json && rm -rf node_modules",
"prettier": "prettier \"src/**/!(static)/**/*.*(js|jsx)\"",
"prettier:write": "prettier \"src/**/!(static)/**/*.*(js|jsx)\" --write",
"release": "semantic-release",
"release:debug": "semantic-release --debug",
"release:dry-run": "semantic-release --dry-run",
"start": "NODE_ENV=development nodemon scripts/start.js --exec babel-node",
"serve": "parcel scripts/index.html",
"test": "jest",
"test:integration": "jest \"^(?=.*integration.test.js).*\"",
"test:unit": "jest \"^(?=.*.test.js)(?!.*integration).*\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:eslint": "eslint src/"
},
"repository": {
"type": "git",
"url": "https://github.com/webex/sdk-component-adapter.git"
},
"publishConfig": {
"tag": "latest",
"access": "public"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@webex/component-adapter-interfaces": "^1.9.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@webex/eslint-config-base": "^0.8.0",
"@webex/test-users": "^1.80.36",
"babel-eslint": "^10.0.3",
"conventional-changelog-angular": "^5.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"jest-puppeteer": "^4.3.0",
"nodemon": "^1.19.4",
"parcel": "^1.12.4",
"prettier": "^1.18.2",
"puppeteer": "^2.0.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^15.13.24",
"webex": "^1.80.132"
},
"peerDependencies": {
"rxjs": "^6.5.4",
"webex": "^1.80.132"
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
"@babel/preset-env"
]
},
"jest": {
"preset": "jest-puppeteer",
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "test_results/jest",
"outputName": "results.xml"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
[
"lower-case",
"pascal-case"
]
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test:eslint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}