-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.27 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
{
"name": "@asyncapi/generator-react-sdk",
"version": "1.1.3",
"description": "The React SDK for templates.",
"license": "Apache-2.0",
"homepage": "https://github.com/asyncapi/generator",
"bugs": {
"url": "https://github.com/asyncapi/generator/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/generator.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"
],
"dependencies": {
"@asyncapi/parser": "^3.4.0",
"@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": "^28.1.1",
"@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": "^28.1.3",
"jsdoc-to-markdown": "^8.0.0",
"ts-jest": "^28.0.8",
"typescript": "^4.1.2"
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "cross-env NODE_OPTIONS='--max-old-space-size=4096' CI=true jest --coverage --maxWorkers=2",
"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 --ignore-path ../../.eslintignore .",
"lint:fix": "eslint --max-warnings 0 --config ../../.eslintrc --ignore-path ../../.eslintignore . --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",
"pretest": "npm run build",
"test:update": "turbo run test -- -u"
},
"publishConfig": {
"access": "public"
}
}