-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.27 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "asyncapi-decorators",
"version": "1.1.3",
"description": "AsyncAPI & OpenAPI3 decorators and document builders",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"scripts": {
"test": "jest --runInBand",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prebuild": "rm -rf lib",
"build": "tsc --project tsconfig.build.json"
},
"keywords": [
"asyncapi",
"openapi",
"swagger",
"decorators"
],
"author": "Dario Mancuso",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.4",
"@types/aws-lambda": "^8.10.61",
"@types/jest": "^26.0.10",
"@types/json-schema": "^7.0.6",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.6.0",
"@types/swagger-schema-official": "^2.0.21",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"commitizen": "^4.1.5",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"npmPublish": true,
"pkgRoot": "lib/$npm_package_name",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/gitlab"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/git",
"assets": [
"CHANGELOG.md",
"lib/**/*.{js,ts}",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/gitlab"
],
"success": false,
"fail": false
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"lodash.merge": "^4.6.2",
"yaml": "^1.10.0"
}
}