-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "columbus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack",
"watch": "webpack --watch",
"protobuf": "node scripts/build_proto.js",
"makePretty": "prettier --write \"src/**/*{.ts,.js}\"",
"isPretty": "prettier --check \"src/**/*{.ts,.js}\"",
"makeRelease": "npm run bundle && mkdir columbus-cli && cp index.html columbus-cli && cp -r dist columbus-cli && tar czf columbus-cli.tar.gz columbus-cli"
},
"author": "",
"license": "ISC",
"dependencies": {
"@dedis/cothority": "^3.6.4",
"isomorphic-ws": "^4.0.1",
"protobufjs": "^6.10.2",
"rxjs": "^6.6.2",
"websocket-ts": "^1.1.0",
"ws": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@types/dockerode": "^2.5.34",
"@types/jasmine": "^3.5.12",
"@types/long": "^4.0.1",
"@types/ws": "^7.4.1",
"babel-loader": "^8.1.0",
"dockerode": "^3.2.1",
"eslint": "^7.24.0",
"jasmine": "^3.6.1",
"jasmine-console-reporter": "^3.1.0",
"node-polyfill-webpack-plugin": "^1.1.0",
"nyc": "^15.1.0",
"prettier": "2.0.5",
"ts-loader": "^6.2.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}