-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tozny-node-sdk",
"version": "2.0.0-alpha.3",
"description": "Node SDK for Tozny Storage (TozStore) clients.",
"homepage": "https://github.com/tozny/js-node-sdk",
"author": {
"name": "Tozny, LLC",
"email": "[email protected]",
"url": "https://tozny.com"
},
"license": "proprietary",
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"encryption",
"encrypted-store",
"api-client"
],
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1"
},
"scripts": {
"prepare": "babel lib -d dist --ignore lib/__tests__",
"pretest": "babel lib -d dist --ignore lib/__tests__",
"precommit": "lint-staged",
"test": "jest",
"testcov": "jest --coverage",
"build": "babel lib -d dist --ignore lib/__tests__",
"profile": "jest profile.test"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"max-params": [
"error",
9
],
"no-prototype-builtins": [
"off"
],
"no-await-in-loop": [
"off"
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": "https://github.com/tozny/js-node-sdk",
"jest": {
"automock": false,
"testEnvironment": "node"
},
"dependencies": {
"@babel/runtime": "^7.5.4",
"FileReader": "^0.10.2",
"awaitify-stream": "^1.0.2",
"babel-runtime": "^6.26",
"base64url": "^3.0.1",
"e3db-client-interface": "^2.0.0-alpha.3",
"isomorphic-fetch": "^2.2",
"js-md5": "^0.7.3",
"libsodium-wrappers": "^0.7.5"
}
}