-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.48 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.48 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
{
"name": "@api-components/amf-components",
"description": "A set of web components based on LitElement that creates the visualization layer on top of the AMF's graph model.",
"version": "1.0.0-beta.4",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
"keywords": [
"api-components",
"api-console",
"amf-components"
],
"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/api-components/amf-components.git"
},
"bugs": {
"url": "https://github.com/api-components/amf-components/issues",
"email": "arc@mulesoft.com"
},
"dependencies": {
"@advanced-rest-client/base": "^0.1.0",
"@advanced-rest-client/events": "^0.2.22",
"@advanced-rest-client/highlight": "^2.0.1",
"@advanced-rest-client/http-code-snippets": "^4.0.0",
"@advanced-rest-client/icons": "^4.0.0",
"@advanced-rest-client/oauth": "^0.1.0",
"@advanced-rest-client/uuid": "^4.0.0",
"@anypoint-web-components/awc": "^1.0.5",
"@api-client/context-menu": "^0.2.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"@pawel-up/data-mock": "^0.1.7",
"amf-json-ld-lib": "0.0.14",
"dompurify": "^2.3.3",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
},
"devDependencies": {
"@advanced-rest-client/arc-demo-helper": "^5.0.1",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/testing": "^3.0.1",
"@web/dev-server": "^0.1.25",
"@web/test-runner": "^0.13.20",
"@web/test-runner-playwright": "^0.8.8",
"amf-client-js": "^5.0.5",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"sinon": "^13.0.1",
"typescript": "^4.4.4",
"typescript-lit-html-plugin": "^0.9.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "web-dev-server",
"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 webkit",
"test:all": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner --node-resolve --watch --playwright --browsers chromium",
"gen:wc": "wca analyze \"*.js\" --outFile custom-elements.json",
"prepare": "husky install && node demo/model.mjs"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
],
"overrides": [
{
"files": [
"demo/**/*.js",
"test/**/*.js",
"dev/**/*.js",
"dev/**/*.mjs",
"**/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"
]
}
}