-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@toznysecure/sdk",
"version": "1.5.17-alpha.3",
"description": "Tozny Platform software developers kit.",
"main": "index.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"lint": "eslint --fix 'browser/' 'lib/' 'node/' 'types/' '__tests__/'",
"prettier": "prettier --write {browser,lib,node,types}",
"test": "jest",
"pretest": "npm run build:dev",
"build": "webpack --config webpack.config.js --env=production",
"build:dev": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tozny/js-sdk.git"
},
"keywords": [
"tozny",
"encryption",
"security",
"cryptography",
"end-to-end",
"database",
"identity"
],
"author": {
"name": "Tozny, LLC",
"email": "info@tozny.com",
"url": "https://tozny.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/tozny/js-sdk/issues"
},
"homepage": "https://github.com/tozny/js-sdk#readme",
"dependencies": {
"cross-fetch": "^3.0.6",
"libsodium-wrappers": "^0.7.9",
"rfc4648": "^1.5.1",
"spark-md5": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@toznysecure/eslint-config": "^1.0.0",
"@toznysecure/prettier-config": "^1.0.0",
"dotenv": "^8.2.0",
"eslint": "^8.7.0",
"eslint-plugin-jest": "^25.7.0",
"glob-parent": ">=5.1.2",
"husky": "^5.2.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-cli": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.5.1",
"selenium-webdriver": "^4.0.0-beta.1",
"set-value": ">=4.0.1",
"tmpl": ">=1.0.5",
"webpack": "^5.24.4",
"webpack-cli": "^4.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"prettier": "@toznysecure/prettier-config"
}