-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.38 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
{
"name": "cyrus-rx",
"version": "2.0.1",
"description": "PubSub library using Rxjs and Postgres Notify-Listen",
"author": "James Teague II <james@teague.dev>",
"repository": {
"type": "git",
"url": "https://github.com/JamesTeague/cyrus.git"
},
"homepage": "https://github.com/JamesTeague/cyrus#readme",
"dependencies": {
"pg": "^7.18.2",
"pg-pool": "^2.0.10",
"rxjs": "^6.5.4",
"stoolie": "^1.0.0"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"prettier": "prettier --write 'src/**/*.{js,ts}'",
"prettier:check": "prettier --check 'src/**/*.{js,ts}'",
"preversion": "npm run test",
"version": "",
"postversion": "",
"prepublishOnly": "npm run test && npm run build",
"prerelease": "git checkout master && git pull origin master && npm i && git add .",
"release": "HUSKY_SKIP_HOOKS=1 standard-version -a --no-verify",
"postrelease": "run-s release:*",
"release:tags": "git push --follow-tags origin master",
"watch": "rollup -cw",
"test": "jest --passWithNoTests"
},
"keywords": [
"pubsub",
"postgres",
"listen",
"notify",
"rxjs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesTeague/cyrus/issues"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@types/jest": "^24.9.1",
"@types/pg": "^7.14.3",
"@types/pg-pool": "^2.0.2",
"babel-jest": "^25.2.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"husky": "^3.1.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-typescript2": "^0.25.3",
"standard-version": "^9.5.0",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.ts?$": "babel-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:check && npm test",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}