-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.03 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
{
"name": "hdf5.uws",
"version": "0.0.1",
"description": "Stream h5 data from native side to browser websockets",
"main": "index.js",
"license": "MIT",
"private": null,
"dependencies": {
"hdf5": "HDF-NI/hdf5.node",
"openssl": "openssl/openssl#OpenSSL_1_1_1b",
"uSockets": "uNetworking/uSockets",
"uWebSockets": "rimmartin/uWebSockets",
"zlib": "madler/zlib"
},
"devDependencies": {
"cypress": "^3.8.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"wait-on": "^3.3.0",
"cxx-mime-types": "DataDriven-CAM/cxx-mime-types",
"urlcpp": "rimmartin/urlcpp",
"uriparser": "uriparser/uriparser"
},
"scripts": {
"clean": "make clean",
"ssl": "make ssl",
"urlcpp": "make urlcpp",
"uriparser": "make uriparser",
"build": "make all -f test/Makefile",
"install": "yarn build",
"start": "yarn build && test/build/main",
"test": "yarn start && wait-on https://localhost:8888/images.html & yarn run cypress open"
}
}