-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.56 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@reactive-commons/messaging",
"version": "1.3.1",
"description": "Set of abstractions and implementations over different patterns and practices that make the foundation of a reactive microservices architecture",
"keywords": [],
"main": "dist/index.umd.js",
"module": "dist/index.es5.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Juan Marín <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/reactive-commons/reactive-commons-js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.ts -w",
"example": "ts-node --project tsconfig.example.json example/index.ts",
"example:watch": "nodemon example/index.ts --watch 'example/**/*.ts' --watch 'src/**/*.ts' --exec 'ts-node --project tsconfig.example.json'",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test:prod && npm run build"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/amqp-connection-manager": "^2.0.10",
"@types/amqplib": "^0.5.13",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/uuid": "^8.0.0",
"builtin-modules": "^3.1.0",
"colors": "^1.4.0",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jest-config": "^26.2.2",
"lint-staged": "^10.2.11",
"lodash.camelcase": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-typescript2": "^0.27.1",
"semantic-release": "^17.1.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"dependencies": {
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.6.0",
"uuid": "^8.3.0"
}
}