This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "@api-components/api-console-ext-comm",
"description": "Element that supports communication with the api-console",
"version": "3.0.3",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
"keywords": [
"web-components",
"api-console",
"extension"
],
"author": {
"name": "Pawel Uchida-Psztyc",
"email": "pawel.psztyc@mulesoft.com"
},
"contributors": [
"Your name can be here!"
],
"bugs": {
"url": "https://github.com/advanced-rest-client/api-console-ext-comm/issues",
"email": "arc@mulesoft.com"
},
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/api-console-ext-comm.git"
},
"dependencies": {
"lit-element": "^2.5.1"
},
"devDependencies": {
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/testing": "^3.0.3",
"@web/dev-server": "^0.1.20",
"@web/test-runner": "^0.13.15",
"@web/test-runner-playwright": "^0.8.6",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"lit-html": "^1.4.1",
"sinon": "^12.0.1",
"typescript": "^4.3.5",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"test": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner test/**/*.test.js --node-resolve --watch"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"overrides": [
{
"files": [
"**/demo/**/*.js",
"**/demo/**/*.html",
"**/test/**/*.js"
],
"rules": {
"no-console": "off",
"no-unused-expressions": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": "off",
"no-param-reassign": "off"
}
}
]
}
}