This repository was archived by the owner on Feb 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.83 KB
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
{
"name": "bridge-client",
"version": "0.1.0",
"description": "A TypeScript module for interfacing with our Haskell-based backend.",
"main": "dist/src/index.js",
"private": true,
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/tsc && chmod +x ./dist/**/*.js",
"clean": "rm -rf dist",
"lint": "./node_modules/.bin/tslint --project tsconfig.json --format stylish",
"start": "./dist/src/index.js",
"test": "./node_modules/.bin/mocha -r ts-node/register -r tsconfig-paths/register $(find test -name *.ts -not -path 'test/examples/*')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1protocol/bridge-client.git"
},
"keywords": [
"bridge",
"websocket"
],
"author": "Vest",
"bugs": {
"url": "https://github.com/1protocol/bridge-client/issues"
},
"homepage": "https://github.com/1protocol/bridge-client#readme",
"devDependencies": {
"@types/better-queue": "^3.8.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.2",
"@types/uuid": "^3.4.4",
"@types/ws": "^6.0.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.1.6",
"typescript-json-schema": "^0.33.0"
},
"dependencies": {
"@most/core": "^1.3.2",
"@most/scheduler": "^1.2.1",
"@most/types": "^1.0.1",
"ajv": "^6.5.5",
"isomorphic-ws": "^4.0.1",
"module-alias": "^2.1.0",
"most-from-event": "^1.1.2",
"source-map-support": "^0.5.8",
"tslib": "^1.9.3",
"uuid": "^3.3.2",
"ws": "^6.1.0"
},
"peerDependencies": {
"@most/core": "1.x",
"@most/scheduler": "1.x",
"@most/types": "1.x"
},
"_moduleAliases": {
"@src": "dist/src"
}
}