forked from mulesoft/api-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.63 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.63 KB
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
{
"name": "api-console",
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
"version": "6.2.1",
"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"
],
"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.1.0",
"@advanced-rest-client/oauth-authorization": "^4.0.2",
"@advanced-rest-client/xhr-simple-request": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@api-components/amf-helper-mixin": "^4.1.2",
"@api-components/api-console-ext-comm": "^3.0.0",
"@api-components/api-documentation": "^5.0.0",
"@api-components/api-navigation": "^4.1.1",
"@api-components/api-request-panel": "^5.0.2",
"@api-components/raml-aware": "^3.0.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": {
"@advanced-rest-client/eslint-config": "^1.1.5",
"@advanced-rest-client/prettier-config": "^0.1.0",
"@advanced-rest-client/testing-karma-sl": "^1.3.1",
"@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": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@open-wc/building-rollup": "^1.2.6",
"@open-wc/testing": "^2.5.16",
"@open-wc/testing-karma": "^3.3.20",
"@polymer/gen-typescript-declarations": "^1.6.2",
"@polymer/iron-test-helpers": "^3.0.0",
"amf-client-js": "^4.1.1",
"body-parser": "^1.19.0",
"deepmerge": "^4.2.1",
"es-dev-server": "^1.49.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"husky": "^4.2.1",
"lint-staged": "^10.2.2",
"multer": "^1.4.2",
"node-cache": "^5.1.0",
"rimraf": "^3.0.1",
"rollup": "^2.10.0",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-postcss": "^3.1.1",
"sinon": "^9.0.1",
"tmp": "^0.2.1",
"typescript": "^3.9.2",
"typescript-lit-html-plugin": "^0.9.0",
"uglify-js": "^3.9.3",
"unzipper": "^0.10.10",
"uuid": "^8.0.0"
},
"scripts": {
"update-types": "NODE_OPTIONS=--max_old_space_size=2048 gen-typescript-declarations --deleteExisting --outDir .",
"generate-model": "npm run build:models",
"start": "node demo/index.js",
"start:old": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"start:server": "node --inspect demo/parsing-server/main.js",
"start:compatibility": "es-dev-server --app-index demo/index.html --compatibility auto --node-resolve --open --watch --babel-exclude **/vendor.js",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"test:compatibility": "karma start --compatibility auto --coverage",
"test:compatibility:watch": "karma start --compatibility auto --auto-watch=true --single-run=false",
"test:sl": "karma start karma.sl.config.js --compatibility auto --coverage",
"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"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": ">=10.0.0"
},
"remarkConfig": {
"settings": {
"spacedTable": "padded"
}
}
}