-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
157 lines (157 loc) · 4.8 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "api-console",
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
"version": "6.6.44",
"license": "CPAL-1.0",
"main": "index.js",
"module": "index.js",
"keywords": [
"web-components",
"raml",
"api",
"api-console",
"documentation",
"amf",
"oas"
],
"authors": [
"MuleSoft"
],
"contributors": [
"Paweł Psztyć",
"Joaquin Stankus",
"Francisco Di Giandomenico",
"Leandro Bauret",
"Carolina Wright"
],
"repository": {
"type": "git",
"url": "git://github.com/mulesoft/api-console.git"
},
"bugs": {
"url": "https://github.com/mulesoft/api-console/issues",
"email": "arc@mulesoft.com"
},
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/oauth-authorization": "^5.0.4",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@api-components/amf-helper-mixin": "^4.5.28",
"@api-components/api-console-ext-comm": "^3.0.0",
"@api-components/api-documentation": "^6.1.2",
"@api-components/api-navigation": "^4.3.1",
"@api-components/api-request": "^0.3.0",
"@polymer/app-layout": "^3.1.0",
"@polymer/iron-media-query": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
},
"devDependencies": {
"@anypoint-web-components/anypoint-dropdown": "^1.0.1",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@anypoint-web-components/anypoint-menu-mixin": "^1.0.2",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"@api-components/api-model-generator": "^0.2.8",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@open-wc/building-rollup": "^1.2.6",
"@open-wc/eslint-config": "^4.2.0",
"@open-wc/testing": "^2.5.16",
"@polymer/iron-test-helpers": "^3.0.0",
"@web/test-runner": "^0.12.5",
"@web/test-runner-playwright": "0.8.10",
"@web/test-runner-visual-regression": "^0.6.4",
"amf-client-js": "^5.4.4",
"body-parser": "^1.19.0",
"deepmerge": "^4.2.1",
"es-dev-server": "^2.1.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^7.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.2.2",
"multer": "^1.4.2",
"node-cache": "^5.1.0",
"postcss": "^8.4.14",
"rimraf": "^3.0.1",
"rollup": "^2.75.6",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-postcss": "^4.0.2",
"sinon": "^9.2.3",
"tmp": "^0.2.1",
"typescript": "^4.7.3",
"typescript-lit-html-plugin": "^0.9.0",
"uglify-js": "^3.16.0",
"unzipper": "^0.10.10",
"uuid": "^8.3.2"
},
"scripts": {
"generate-model": "npm run build:models",
"start": "node demo/index.js",
"start:server": "node --inspect demo/parsing-server/main.js",
"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 && npm run test:visual",
"test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner test/*.test.js --node-resolve --watch --playwright --browsers chromium",
"test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit --update-visual-baseline\n",
"build": "rimraf dist && rollup -c rollup.config.js",
"build:vendor": "node tasks/prepare.js",
"build:models": "node demo/model.js",
"prepare": "npm run build:vendor && npm run build:models"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": ">=10.0.0"
},
"remarkConfig": {
"settings": {
"spacedTable": "padded"
}
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"overrides": [
{
"files": [
"demo/**/*.js",
"test/**/*.js",
"**/demo/**/*.html"
],
"rules": {
"no-console": "off",
"no-unused-expressions": "off",
"no-plusplus": "off",
"no-param-reassing": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": "off"
}
}
]
},
"overrides": {
"playwright": "1.25.2",
"unset-value": "2.0.1",
"semver": "7.5.4",
"decode-uri-component": "0.4.1",
"set-value": "4.1.0"
}
}