forked from asyncapi/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.36 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@asyncapi/cli",
"version": "0.3.2",
"license": "Apache-2.0",
"bin": {
"asyncapi": "dist/cli.js"
},
"engines": {
"node": ">12.16"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/cli.js",
"pretest": "npm run build",
"pretest:coverage": "npm run build",
"test": "jest",
"test:coverage": "jest --verbose --coverage",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"generate:assets": "echo 'Nothing Generated'",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"@asyncapi/parser": "^1.7.0",
"ink": "^3.0.8",
"meow": "^9.0.0",
"react": "^17.0.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.5.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@sindresorhus/tsconfig": "^0.9.0",
"@types/jest": "^26.0.20",
"@types/node": "^16.3.3",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chalk": "^4.1.0",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^7.31.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.9.1",
"ink-testing-library": "^2.1.0",
"jest": "^26.6.3",
"semantic-release": "^17.4.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}