-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.88 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
{
"name": "@virgilsecurity/keyknox",
"version": "1.0.4",
"description": "Keyknox SDK allows developers to communicate with Virgil Keyknox Service to upload, download, and synchronize encrypted sensitive data (private keys) between different devices.",
"main": "./dist/keyknox.cjs.js",
"module": "./dist/keyknox.es.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/VirgilSecurity/virgil-keyknox-javascript",
"author": "Virgil Security Inc. <support@virgilsecurity.com>",
"license": "BSD-3-Clause",
"scripts": {
"lint": "eslint '**/*.{js,ts}'",
"test": "mocha -t 0 -r setup-mocha -r ts-node/register src/**/*.test.ts",
"build": "rollup -c",
"clean": "rimraf .rpt2_cache .virgil_key_entries dist",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"@types/base-64": "^0.1.3",
"@virgilsecurity/crypto-types": "^2.0.0",
"axios": "^1.6.8",
"base-64": "^0.1.0"
},
"peerDependencies": {
"virgil-sdk": "^6.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-node-resolve": "15.0.2",
"@rollup/plugin-terser": "0.4.1",
"@rollup/plugin-typescript": "11.1.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"mocha": "^10.4.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^4.14.3",
"rollup-plugin-replace": "^2.2.0",
"ts-node": "^8.3.0",
"typescript": "^4.8.4",
"uuid": "^3.3.2",
"virgil-crypto": "^5.1.1",
"virgil-sdk": "^6.2.0"
}
}