-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@telios/client-sdk",
"version": "8.1.3",
"description": "SDK for the Telios platform",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test_sdk tape tests/crypto.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/setup.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/clientSDK.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/account.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/ipfs.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/mailbox.test.js | tap-spec && cross-env NODE_ENV=test_sdk tape tests/domains.test.js | tap-spec",
"debug": "cross-env NODE_ENV=test_sdk tape tests/drive.test.js | tap-spec --nolazy --debug-brk=5858"
},
"repository": {
"type": "git",
"url": "https://github.com/Telios-org/client-sdk"
},
"author": "Hexadecibal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telios-org/client-sdk/issues"
},
"homepage": "https://github.com/Telios-org/client-sdk",
"dependencies": {
"@telios/nebula": "^4.0.4",
"async": "^3.2.0",
"axios": "^0.21.1",
"blakejs": "^1.1.0",
"chokidar": "^3.5.1",
"dat-encoding": "^5.0.1",
"jwt-decode": "^2.2.0",
"level": "^6.0.1",
"mailparser": "^2.8.1",
"memorystream": "^0.3.1",
"moment": "^2.27.0",
"multifeed": "^6.0.0",
"node-fetch": "^2.6.1",
"pump": "^3.0.0",
"rimraf": "^3.0.2",
"uuid": "^8.2.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"del": "^6.0.0",
"husky": "^6.0.0",
"npm-force-resolutions": "^0.0.10",
"tap-spec": "^5.0.0",
"tape": "^5.2.2",
"tape-promise": "^4.0.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"keywords": [
"telios-sdk",
"telios",
"private",
"email"
],
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}