forked from asyncapi/generator-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.22 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": "@asyncapi/generator-react-sdk",
"version": "1.0.11",
"description": "The React SDK for templates.",
"license": "Apache-2.0",
"homepage": "https://github.com/asyncapi/generator-react-sdk",
"bugs": {
"url": "https://github.com/asyncapi/generator-react-sdk/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/generator-react-sdk.git"
},
"keywords": [
"asyncapi",
"documentation",
"generator",
"react",
"sdk",
"template"
],
"author": {
"name": "The AsyncAPI maintainers"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"dependencies": {
"@asyncapi/parser": "^3.0.7",
"@babel/core": "7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"babel-plugin-source-map-support": "^2.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"rollup": "^2.60.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.46.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.20.0",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^8.0.0",
"markdown-toc": "^1.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "cross-env CI=true jest --coverage",
"test:watch": "jest --watch",
"docs": "npm run docs:markdown & npm run generate:readme:toc",
"docs:markdown": "./node_modules/.bin/jsdoc2md lib/index.js -f lib/**/*.js > API.md",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"generate:assets": "npm run prepublishOnly && npm run docs",
"generate:readme:toc": "markdown-toc -i README.md",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"publishConfig": {
"access": "public"
}
}