-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "universal-ws",
"version": "0.2.9",
"description": "A universal websocket client.",
"engines": {
"node": ">=4.2.0"
},
"main": "dist/library.js",
"types": "dist/library.d.ts",
"browser": "browser/universal-ws.js",
"authors": [
"Chris Woodle <[email protected]>",
"Sabbir Baser <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/droplit/universal-ws.git"
},
"license": "MIT",
"keywords": [
"universal-ws",
"universal ws",
"ws",
"websocket",
"browser",
"node",
"isomorphic",
"universal",
"server"
],
"scripts": {
"build": "yarn run tslint && yarn pnpify tsc -b -v && yarn run webpack",
"webpack": "yarn pnpify webpack --config ./webpack.config.js",
"clean": "yarn pnpify rimraf ./dist",
"prepack": "yarn run build",
"tslint": "yarn pnpify tslint -c ../tslint.json -t stylish 'src/**/*.ts' --force",
"test": "yarn pnpify mocha -r ts-node/register -r source-map-support/register src/**/*.spec.ts",
"watch": "yarn run tslint && tsc -b -w"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.2",
"@yarnpkg/pnpify": "^2.0.0-rc.25",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"pnp-webpack-plugin": "^1.6.4",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^4.1.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@types/retry": "^0.12.0",
"@types/ws": "^7.4.0",
"bs58": "^4.0.1",
"retry": "^0.12.0"
},
"optionalDependencies": {
"@types/node": "4.2.0",
"ws": "^7.4.3"
}
}