forked from asyncapi/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"name": "@asyncapi/generator-components",
"version": "0.5.0",
"description": "Package with reusable components for generation using React render engine",
"scripts": {
"test": "npm run build && jest --coverage",
"test:update": "npm run test -- -u",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"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",
"docs": "jsdoc2md --helper \"jsdoc2md-helpers/jsdoc-helper.js\" --template \"jsdoc2md-handlebars/api.hbs\" \"./lib/**/*.js\" \"./lib/**/readme/*.js\" > docs/API.md"
},
"files": [
"lib/**",
"README.md",
"LICENSE"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/asyncapi/generator.git",
"directory": "packages/components"
},
"author": "Lukasz Gornicki",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-react-sdk": "*",
"@asyncapi/generator-helpers": "*",
"@asyncapi/modelina": "^5.10.1"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"jest": "^27.3.1",
"jest-esm-transformer": "^1.0.0",
"jsdoc-to-markdown": "^7.1.1"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
}