This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"name": "@asyncapi/generator-filters",
"version": "2.1.0",
"description": "Library with Nunjucks filters for templates using AsyncAPI Generator",
"main": "src/index.js",
"scripts": {
"test": "ava",
"docs": "jsdoc2md src/customFilters.js > docs/api.md",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"release": "semantic-release",
"lint:fix": "eslint --fix --config .eslintrc .",
"generate:assets": "npm run docs",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/generator-filters.git"
},
"keywords": [
"asyncapi",
"generator",
"nunjucks"
],
"author": "Lukasz Gornicki <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/generator-filters/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/asyncapi/generator-filters#readme",
"devDependencies": {
"@asyncapi/parser": "^1.15.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"ava": "^4.3.3",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^6.8.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jsdoc-to-markdown": "^7.1.1",
"semantic-release": "^19.0.3"
},
"dependencies": {
"lodash": "^4.17.15",
"markdown-it": "^12.3.2",
"openapi-sampler": "1.0.0-beta.17"
},
"ava": {
"files": [
"./src/*.test.js"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}