-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
97 lines (97 loc) · 2.36 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
{
"name": "@algoan/pubsub",
"version": "6.2.0",
"description": "PubSub Library for algoan",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./coverage ./.nyc_output ./node_modules",
"compile": "tsc -p .",
"prepare": "husky install",
"commit": "git-cz",
"pretest": "npm run compile && npm run lint",
"prettier": "prettier --write '{src,test,examples}/**/*.{js,ts}'",
"lint": "eslint ./src/**/*.ts",
"test": "ava --color --verbose",
"cover": "nyc --reporter=html --reporter=lcov npm test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/pubsub.git"
},
"keywords": [
"typescript",
"nodejs",
"google-pubsub"
],
"files": [
"dist/src/"
],
"author": "algoan",
"license": "ISC",
"devDependencies": {
"@algoan/eslint-config": "^2.1.1",
"@amanda-mitchell/semantic-release-npm-multiple": "github:algoan/semantic-release-npm-multiple#fd763c631503cb88dd143ce72c5838aa1b19ace4",
"@ava/typescript": "^4.1.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/git": "^10.0.1",
"@types/sinon": "^17.0.3",
"@types/uuid": "^9.0.8",
"ava": "^5.3.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"google-pubsub-emulator": "^7.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.2",
"sinon": "^17.0.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"dependencies": {
"@google-cloud/pubsub": "^4.3.2",
"pino": "^8.18.0"
},
"engines": {
"node": ">= 12"
},
"ava": {
"files": [
"test/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
},
"compile": false
},
"failFast": true
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --list-different \"{src,test}/**/*.ts\""
]
},
"nyc": {
"check-coverage": false,
"per-file": true,
"cache": false,
"extension": [
".ts"
]
}
}