This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
{
"name": "api-console-cli",
"version": "3.0.0",
"description": "A set of dev tools for API console",
"bin": {
"api-console": "lib/cli.js"
},
"scripts": {
"test": "mocha --require esm --timeout 500000 test/*.test.js",
"test:watch": "mocha --require esm --timeout 500000 --watch test/*.test.js",
"test:coverage": "nyc --reporter=html --reporter=text mocha --require esm --timeout 500000 test/*.test.js"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"API Console",
"tools",
"builder"
],
"authors": [
"Pawel Psztyc <[email protected]>",
"The Advanced REST Client team"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/api-console-cli.git"
},
"homepage": "https://github.com/mulesoft-labs/api-console-cli#readme",
"dependencies": {
"@api-components/api-console-builder": "^3.0.0",
"amf-client-js": "^4.6.0",
"chalk": "^4.1.0",
"ci-info": "^2.0.0",
"colors": "^1.4.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"esm": "^3.2.25",
"fs-extra": "^9.1.0",
"mime-types": "^2.1.28",
"open": "^7.3.1",
"portfinder": "^1.0.28",
"update-notifier": "^5.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/chai": "^4.2.14",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/fs-extra": "^9.0.6",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"@types/update-notifier": "^5.0.0",
"@types/winston": "^2.4.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-node": "^4.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"node-html-parser": "^2.0.2",
"nyc": "^15.1.0",
"sinon": "^9.2.4"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}