UNPKG

2.12 kBJSONView Raw
1{
2 "name": "virgil-crypto",
3 "version": "5.0.2",
4 "description": "Virgil JavaScript Crypto Library is a high-level cryptographic library that allows you to perform all necessary operations for secure storing and transferring data and everything required to become HIPAA and GDPR compliant.",
5 "main": "./dist/node.cjs.js",
6 "module": "./dist/node.es.js",
7 "browser": {
8 "./dist/node.cjs.js": "./browser.cjs.js",
9 "./dist/node.es.js": "./browser.es.js"
10 },
11 "typings": "./dist/types/index.d.ts",
12 "files": [
13 "dist",
14 "browser.cjs.js",
15 "browser.cjs.d.ts",
16 "browser.es.js",
17 "browser.es.d.ts",
18 "worker.cjs.js",
19 "worker.cjs.d.ts",
20 "worker.es.js",
21 "worker.es.d.ts"
22 ],
23 "repository": "https://github.com/VirgilSecurity/virgil-crypto-javascript/tree/master/packages/virgil-crypto",
24 "author": "Virgil Security Inc. <support@virgilsecurity.com>",
25 "license": "BSD-3-Clause",
26 "keywords": [
27 "security",
28 "elliptic",
29 "elliptic curve",
30 "virgil",
31 "virgilsecurity",
32 "encryption",
33 "crypto"
34 ],
35 "scripts": {
36 "test": "mocha -t 0 -r ts-node/register src/**/*.test.ts",
37 "build": "rollup -c",
38 "clean": "rimraf .rpt2_cache dist",
39 "prepare": "npm run clean && npm run build"
40 },
41 "dependencies": {
42 "@virgilsecurity/core-foundation": "^2.0.0",
43 "@virgilsecurity/crypto-types": "^2.0.0",
44 "@virgilsecurity/data-utils": "^2.0.0",
45 "@virgilsecurity/init-utils": "^2.0.0",
46 "@virgilsecurity/sdk-crypto": "^2.0.0",
47 "html-webpack-plugin": "5.5.1"
48 },
49 "devDependencies": {
50 "@rollup/plugin-commonjs": "24.1.0",
51 "@rollup/plugin-node-resolve": "15.0.2",
52 "@rollup/plugin-terser": "0.4.1",
53 "@rollup/plugin-typescript": "11.1.0",
54 "@rollup/plugin-wasm": "^6.1.3",
55 "@types/chai": "^4.2.7",
56 "@types/mocha": "^5.2.7",
57 "@types/node": "^13.1.8",
58 "builtin-modules": "^3.1.0",
59 "chai": "^4.2.0",
60 "mocha": "^10.2.0",
61 "rimraf": "^3.0.0",
62 "rollup": "3.21.0",
63 "rollup-plugin-copy": "3.4.0",
64 "rollup-plugin-re": "1.0.7",
65 "ts-node": "10.9.1",
66 "typescript": "5.0.4"
67 }
68}