-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "@telios/telios-client-backend",
"version": "6.0.4",
"description": "A reusable backend to for telios email clients to use between desktop and mobile.",
"main": "index.js",
"files": [
"index.js",
"dist/*"
],
"scripts": {
"test": "cross-env NODE_ENV=test_sdk npm run build; cross-env NODE_ENV=test_sdk tape tests/*.test.js | tap-spec",
"test-main": "cross-env NODE_ENV=test_sdk npm run build; cross-env NODE_ENV=test_sdk tape tests/000_debug.test.js | tap-spec",
"sync": "cross-env NODE_ENV=test_sdk npm run build; tape tests/07_remoteSync.test.js | tap-spec",
"prepare": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Telios-org/telios-client-backend.git"
},
"author": "hexadecible",
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/Telios-org/telios-client-backendissues"
},
"homepage": "https://github.com/Telios-org/telios-client-backend#readme",
"dependencies": {
"@telios/client-sdk": "^8.1.3",
"@telios/nebula": "git+https://github.com/Telios-org/nebula",
"@telios/nebula-migrate": "git+https://github.com/Telios-org/nebula-migrate",
"blakejs": "^1.2.1",
"env-cmd": "^10.1.0",
"file-type": "^16.5.3",
"generate-password": "^1.7.0",
"luxon": "^2.3.1",
"memorystream": "^0.3.1",
"node-fetch": "^2.6.7",
"remove-markdown": "^0.3.0",
"socket.io-client": "^4.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^17.0.8",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"tap-spec": "^2.2.2",
"tape": "^5.4.0",
"tape-promise": "^4.0.0",
"typescript": "^4.5.4"
}
}