-
-
Notifications
You must be signed in to change notification settings - Fork 238
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "@asyncapi/nunjucks-filters",
"version": "2.1.0",
"description": "Library with Nunjucks filters for templates using AsyncAPI Generator",
"private": false,
"main": "src/index.js",
"scripts": {
"test": "ava",
"docs": "jsdoc2md src/customFilters.js > docs/api.md",
"lint": "eslint --max-warnings 0 --config ../../.eslintrc --ignore-path ../../.eslintignore .",
"lint:fix": "eslint --fix --config ../../.eslintrc --ignore-path ../../.eslintignore .",
"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.git"
},
"keywords": [
"asyncapi",
"generator",
"nunjucks"
],
"author": "Lukasz Gornicki <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/generator/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/asyncapi/generator#readme",
"devDependencies": {
"@asyncapi/parser": "^1.15.1",
"ava": "^4.3.3",
"eslint": "^6.8.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jsdoc-to-markdown": "^7.1.1"
},
"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"
]
}
}