-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
81 lines (81 loc) · 2 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
{
"name": "demux-eos",
"version": "5.0.4",
"description": "Demux-js Action Reader implementations for EOSIO blockchains",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/EOSIO/demux-js-eos",
"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.6",
"@types/dockerode": "^2.5.18",
"@types/jest": "^24.0.25",
"@types/massive": "^5.4.3",
"@types/mongodb": "^3.1.4",
"@types/node": "^10.5.1",
"@types/node-fetch": "^2.1.6",
"@types/request-promise-native": "^1.0.15",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.15.6",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/express": "4.16.1",
"bunyan": "1.8.12",
"demux": "5.0.2-572",
"demux-postgres": "5.0.2-333",
"dockerode": "2.5.8",
"eosjs": "20.0.0-b06ca22.0",
"massive": "6.1.4",
"mongodb": "3.1.13",
"node-fetch": "2.3.0",
"pg-monitor": "1.1.0",
"request": "2.87.0",
"request-promise-native": "1.0.5"
},
"peerDependencies": {
"demux": "5.0.2-569"
},
"resolutions": {
"*/merge": "1.2.1",
"lodash": "4.17.15"
},
"scripts": {
"build": "yarn rm-build && yarn tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "yarn jest",
"rm-build": "node ./scripts/rm-build.js",
"build-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"
}
}