-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "cloudmls",
"version": "0.1.4",
"description": "CloudMLS: Additional layer of security for existing cloud based infrastructure",
"main": "index.ts",
"directories": {
"test": "test"
},
"files": ["lib/**/*"],
"scripts": {
"build": "tsc -d -p .",
"test": "mongo users_db --eval \"db.users.remove({}); db.accounts.remove({}); db.groupstates.remove({}) \" && karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/lukaskaeppeli/CloudMLS.git"
},
"author": "Lukas Käppeli",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.26.0",
"byte-base64": "^1.1.0",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"rxjs": "^7.5.4"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jasmine": "^3.10.3",
"@types/node": "^17.0.18",
"jasmine": "^4.0.2",
"jasmine-browser-runner": "^1.0.0",
"jasmine-core": "^4.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-typescript": "^5.5.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}