-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 2.98 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
98
{
"name": "demux-dfuse",
"version": "0.2.6",
"description": "A demux-js Action Reader Implementation for dfuse.io",
"sideEffects": false,
"main": "dist/lib/index.js",
"module": "dist/demux-js-dfuse.es5.js",
"browser": "dist/demux-js-dfuse.umd.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist/*"
],
"repository": "https://github.com/dfuse-io/demux-js-dfuse",
"author": {
"name": "dfuse Developers",
"email": "[email protected]",
"url": "https://dfuse.io"
},
"license": "MIT",
"scripts": {
"check": "yarn lint && yarn test && yarn build",
"prepublishOnly": "yarn build && yarn test",
"prebuild": "rimraf docs dist",
"build": "yarn run build:cjs && yarn run build:es && yarn run build:umd && yarn run build:docs",
"build:cjs": "tsc --module commonjs",
"build:es": "rollup -c rollup.config.es.js",
"build:umd": "rollup -c rollup.config.umd.js && node scripts/compress-umd-build.js",
"build:docs": "typedoc",
"publish:latest": "yarn publish --public && node scripts/gh-publish-docs.js",
"publish:next": "yarn publish --public --tag next",
"postversion": "node scripts/gh-push.js",
"lint": "tslint 'src/**/*.ts'",
"lint:specific": "tslint",
"start": "tsc --module commonjs --watch",
"run:example": "node -r ts-node/register example/index.ts | bunyan",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"_comment": "Use --no-verify to bypass",
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"**/*.ts": [
"yarn lint:specific"
]
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.16",
"@types/node-fetch": "^2.5.0",
"@types/ws": "^6.0.1",
"dotenv": "^8.0.0",
"husky": "^3.0.2",
"jest": "^24.1.0",
"jest-expect-message": "^1.0.2",
"lint-staged": "^9.2.1",
"node-fetch": "^2.6.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"terser": "^4.1.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.15.0",
"typedoc-default-themes-extension": "^0.0.3",
"typedoc-plugin-toc-group": "^0.0.5",
"typescript": "^3.5.3"
},
"dependencies": {
"@dfuse/client": "^0.2.8",
"apollo-boost": "^0.4.3",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link-ws": "^1.0.18",
"bunyan": "^1.8.12",
"demux": "5.0.2-560",
"graphql": "^14.4.2",
"subscriptions-transport-ws": "^0.9.16",
"ws": "^7.1.1"
},
"peerDependencies": {
"demux": ">= 5.0.2-560"
}
}