-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.6 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
94
95
96
97
98
99
100
101
102
103
{
"name": "adonis5-nats",
"version": "1.1.11",
"description": "Adonis NATS broker",
"main": "build/index.js",
"scripts": {
"pretest": "npm run lint",
"test": "node japaFile.js",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cpx 'templates/**' 'build/templates'",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json reg2005/adonis5-nats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-nats.git"
},
"keywords": [
"adonis",
"adonis5",
"nats",
"broker",
"microservices"
],
"author": "Evgeniy",
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis5-nats/issues"
},
"homepage": "https://github.com/reg2005/adonis5-nats#readme",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"devDependencies": {
"@adonisjs/application": "^5.1.6",
"@adonisjs/core": "^5.1.11",
"@adonisjs/mrm-preset": "^4.1.2",
"@adonisjs/require-ts": "^2.0.7",
"@types/node": "^16.4.14",
"adonis-provider-tester": "git://github.com/VladyslavParashchenko/adonis-provider-tester.git#main",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^4.0.1",
"doctoc": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.3",
"eslint-plugin-prettier": "^3.4.0",
"github-label-sync": "^2.0.2",
"husky": "^7.0.1",
"japa": "^3.1.1",
"mrm": "^3.0.8",
"np": "^7.5.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"files": [
"build/src",
"build/adonis-typings",
"build/providers",
"build/templates",
"build/index.d.ts",
"build/index.js"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"dependencies": {
"moleculer": "^0.14.24",
"nats": "^2.8.0"
},
"adonisjs": {
"types": "adonis5-nats",
"providers": [
"adonis5-nats"
],
"templates": {
"config": [
{
"src": "config.txt",
"dest": "nats"
}
]
},
"env": {
"NATS_TRANSPORTER": "nats://localhost:4222"
}
}
}