-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "demux-postgres",
"version": "5.0.2",
"description": "Demux-js Action Handler implementation for Postgres databases",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/EOSIO/demux-js-postgres",
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"collaborators": [
"Julien Heller",
"Jeffrey Smith"
],
"license": "MIT",
"devDependencies": {
"@blockone/tslint-config-blockone": "^4.0.0",
"@types/bunyan": "^1.8.5",
"@types/dockerode": "^2.5.5",
"@types/jest": "^24.0.25",
"@types/massive": "^5.4.3",
"@types/node": "^10.5.1",
"@types/request-promise-native": "^1.0.15",
"dockerode": "^2.5.5",
"jest": "^24.9.0",
"pg-monitor": "^1.1.0",
"ts-jest": "^24.2.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.15.6",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/express": "4.17.2",
"demux": "5.0.2-572",
"massive": "6.1.4"
},
"resolutions": {
"lodash": "4.17.15"
},
"peerDependencies": {
"demux": "5.0.2-572"
},
"scripts": {
"build": "tsc && cp -R src/cyanaudit dist",
"build-all": "rm -rf dist/* && tsc && yarn build-docs",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "PGPASSWORD=docker jest",
"build-docs": "rm -rf docs && ./scripts/build-docs.sh",
"current-version": "echo $npm_package_version",
"prepublishOnly": "yarn build"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}