-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.35 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-tools",
"description": "A universal websocket library.",
"authors": [
"Chris Woodle <[email protected]>",
"Sabbir Baser <[email protected]>"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/droplit/universal-ws.git"
},
"scripts": {
"build": "npm run tslint && npm run build-client && npm run build-server",
"build-client": "cd client && npm run build",
"build-server": "cd server && npm run build",
"clean": "rimraf */dist",
"teardown": "rimraf */dist */node_modules",
"tslint-client": "cd client && npm run tslint",
"tslint-server": "cd server && npm run tslint",
"tslint": "npm run tslint-client && npm run tslint-server",
"test": "npm run unit-test && npm run system-test && npm run browser-test",
"pretest": "npm run build",
"test-client": "cd client && npm test",
"test-server": "cd client && npm test",
"unit-test": "npm run test-client && npm run test-server",
"webpack-browser-test": "cd ./test/browser && webpack --config ./webpack.config.js",
"browser-test": "npm run webpack-browser-test && nightwatch ./test/browser/nightwatch.js",
"system-test": "cd test/system && mocha -r ts-node/register -r source-map-support/register **/system.test.ts",
"watch-client": "cd client && npm run watch",
"watch-server": "cd server && npm run watch",
"publish": "cd ./server && npm publish && cd ../client && npm publish"
},
"dependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.2",
"@types/nightwatch": "^1.3.2",
"@types/node": "^10.1.2",
"chai": "^4.1.2",
"chalk": "^2.4.2",
"express": "^4.16.4",
"get-port": "^5.0.0",
"http-shutdown": "^1.2.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tslint": "^5.12.1",
"typescript": "^3.2.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"optionalDependencies": {
"chromedriver": "^2.45.0",
"nightwatch": "^1.0.18"
},
"resolutions": {
"typescript": "4.1.3"
},
"workspaces": [
"server",
"client"
]
}