-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.29 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
106
107
{
"name": "e3db-client-interface",
"version": "2.0.0-alpha.3",
"description": "JavaScript client interface for E3DB JS SDKs",
"homepage": "https://github.com/tozny/js-sdk-client-interface",
"author": {
"name": "Tozny, LLC",
"email": "info@tozny.com",
"url": "https://tozny.com"
},
"license": "proprietary",
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"encryption",
"encrypted-store",
"api-client",
"client-interface"
],
"dependencies": {
"@babel/runtime": "^7.5.4",
"base64url": "^3.0.1",
"dotenv": "^6.1.0",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"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",
"jest-fetch-mock": "^2.0.1",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"xo": "^0.24.0"
},
"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
},
"globals": {
"fetch": "readonly"
},
"rules": {
"max-params": [
"error",
9
],
"no-prototype-builtins": [
"off"
],
"no-await-in-loop": [
"off"
]
},
"plugins": [
"prettier"
]
},
"repository": "https://github.com/tozny/js-sdk-client-interface",
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"mocks"
]
}
}