-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.75 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
{
"name": "websocket-benchmark-nodejs",
"version": "1.0.0",
"description": "Benchmark for websocket performance",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/server.js --exec babel-node",
"start-benchmark": "babel-node ./src/client.js",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register ./test/*.spec.js",
"build-clean": "rm -rf build && mkdir build",
"build-server": "babel -d ./build ./src -s",
"build-production": "npm run build-clean && npm run build-server",
"start-production": "cross-env NODE_ENV=production node ./build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/dforsten/websocket-benchmark-nodejs.git"
},
"keywords": [
"websockets",
"performance"
],
"author": "David Forstenelchner",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/dforsten/websocket-benchmark-nodejs/issues"
},
"homepage": "https://gitlab.com/dforsten/websocket-benchmark-nodejs#README",
"devDependencies": {
"chai": "^4.1.0",
"cross-env": "^5.0.3",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-preset-es2015": "^6.24.1",
"ws": "^3.2.0"
},
"optionalDependencies": {
"bufferutil": "^3.0.2",
"utf-8-validate": "^3.0.3"
}
}