-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "@asyncapi/simulator",
"version": "0.12.0",
"type": "commonjs",
"description": "The asyncapi command line library to test your app at scale.",
"types": "index.d.ts",
"engines": {
"node": "14.15.5"
},
"scripts": {
"test": "cross-env mocha src/**/*.test.js",
"desktop": "cd Desktop && cross-env npm run-script start",
"docker:build": "docker build -t asyncapi/simulator:latest .",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"generate:assets": "echo \"Nothing to generate\"",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"keywords": [
"asyncapi",
"simulation"
],
"publishConfig": {
"access": "public"
},
"author": {
"email": "[email protected]",
"name": "NektariosFifes",
"url": "https://github.com/NektariosFifes"
},
"license": "Apache-2.0",
"dependencies": {
"@asyncapi/parser": "^1.18.0",
"@types/react": "^18.0.6",
"ajv": "^8.6.0",
"async-mqtt": "^2.6.1",
"chalk": "^4.1.0",
"commander": "^7.2.0",
"cross-env": "^7.0.3",
"js-yaml": "^3.14.1",
"randexp": "^0.5.3",
"run-script": "^0.1.1"
},
"devDependencies": {
"all-contributors-cli": "^6.14.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.31.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"mocha": "^9.0.3",
"prettier": "^2.2.1"
},
"bin": {
"simulator": "src/bin/cli.js"
}
}