-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.31 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.31 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
130
{
"name": "@api-components/api-method-documentation",
"description": "A HTTP method documentation build from AMF model",
"version": "5.2.30",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
"keywords": [
"api-components",
"api-console",
"documentation",
"method-documentation"
],
"author": {
"name": "Pawel Uchida-Psztyc",
"email": "pawel.psztyc@mulesoft.com"
},
"contributors": [
"Carolina Wright",
"Francisco Di Giandomenico",
"Leandro Bauret",
"Yury",
"Your name can be here!"
],
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/api-method-documentation.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/api-method-documentation/issues",
"email": "arc@mulesoft.com"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.3.4",
"@advanced-rest-client/arc-marked": "^1.1.1",
"@advanced-rest-client/clipboard-copy": "^3.1.0",
"@advanced-rest-client/http-code-snippets": "^3.2.2",
"@advanced-rest-client/markdown-styles": "^3.1.4",
"@anypoint-web-components/anypoint-button": "^1.2.3",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@anypoint-web-components/anypoint-dropdown": "^1.1.7",
"@anypoint-web-components/anypoint-item": "^1.1.3",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@api-components/amf-helper-mixin": "^4.5.31",
"@api-components/api-annotation-document": "^4.2.1",
"@api-components/api-body-document": "^4.4.15",
"@api-components/api-example-generator": "^4.4.8",
"@api-components/api-headers-document": "^4.2.4",
"@api-components/api-parameters-document": "^4.1.1",
"@api-components/api-responses-document": "^4.2.6",
"@api-components/api-security-documentation": "^4.1.0",
"@api-components/http-method-label": "^3.1.4",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"devDependencies": {
"@advanced-rest-client/arc-demo-helper": "^3.0.3",
"@advanced-rest-client/oauth-authorization": "^5.0.6",
"@anypoint-web-components/anypoint-checkbox": "^1.2.2",
"@anypoint-web-components/anypoint-input": "^0.2.27",
"@anypoint-web-components/anypoint-styles": "^1.0.2",
"@api-components/api-model-generator": "^0.2.14",
"@api-components/api-navigation": "^4.3.2",
"@api-components/api-request": "^0.1.20",
"@api-components/api-server-selector": "^0.6.4",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@open-wc/eslint-config": "^4.0.1",
"@open-wc/testing": "^2.5.32",
"@web/dev-server": "^0.1.8",
"@web/test-runner": "^0.13.15",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.2",
"sinon": "^11.1.2",
"typescript": "^4.4.3",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
"start": "web-dev-server --app-index demo/index.html --node-resolve --open --watch --root-dir .",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:types": "tsc",
"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 --playwright --browsers chromium",
"gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json",
"prepare": "node demo/model.js"
},
"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"
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}