-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "@becual/pg-notify",
"version": "2.0.5",
"description": "NodeJS PostgreSQL pg-notify subscription library",
"main": "./src/index.js",
"repository": "[email protected]:becual/node-pg-notify.git",
"author": "Becual Technologies S.A <[email protected]>",
"license": "MIT",
"keywords": ["postgresql", "pg-notify", "notify", "subscription"],
"private": false,
"scripts": {
"db:up": "docker-compose up -d db",
"db:stop": "docker-compose stop db",
"test": "node -r dotenv/config node_modules/.bin/jest --watchAll --runInBand",
"g:r": "jsdoc2md src/index.js > README.md",
"test:sub": "node -r dotenv/config node_modules/.bin/jest subscribe.test.js --watchAll --runInBand"
},
"dependencies": {
"ramda": "^0.25.0"
},
"devDependencies": {
"dotenv": "^5.0.1",
"jest": "^22.4.2",
"jsdoc-to-markdown": "^4.0.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"./node_modules/",
"./output/",
"./storage/"
],
"testPathIgnorePatterns": [
"./node_modules/",
"./output/",
"./storage/"
],
"watchPathIgnorePatterns": [
"./node_modules/",
"./output/",
"./storage/"
],
"modulePathIgnorePatterns": [
"./node_modules/",
"./output/",
"./storage/"
]
},
"peerDependencies": {
"pg": "^7.4.1"
}
}