-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.3 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.3 KB
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
{
"name": "virgil-sdk",
"version": "6.2.0",
"description": "Virgil Security Services SDK",
"contributors": [
"Eugene Baranov <ebaranov.dev@gmail.com> (https://github.com/ebaranov/)",
"Egor Gumenyuk <boo1ean0807@gmail.com> (https://github.com/boo1ean/)",
"Vadim Avdeiev <v.avdeiev@gmail.com> (https://github.com/vadimavdeev/)",
"Pavlo Ponomarenko <shocksilien@gmail.com> (https://github.com/theshock/)",
"Alexey Smirnov <asmirnov@virgilsecurity.com> (https://github.com/xlwknx/)",
"Serhii Nanovskyi <nanovskyi.serhii@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/VirgilSecurity/virgil-sdk-javascript"
},
"main": "dist/virgil-sdk.cjs.js",
"module": "dist/virgil-sdk.es.js",
"browser": {
"./dist/virgil-sdk.cjs.js": "./dist/virgil-sdk.browser.cjs.js",
"./dist/virgil-sdk.es.js": "./dist/virgil-sdk.browser.es.js",
"./src/Storage/adapters/FileSystemStorageAdapter.ts": "./src/Storage/adapters/IndexedDbStorageAdapter.ts"
},
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Virgil Security Inc. <support@virgilsecurity.com>",
"keywords": [
"security",
"elliptic",
"elliptic curve",
"virgil",
"virgilsecurity",
"encryption",
"crypto",
"pki"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/jest": "^29.2.2",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"buffer-es6": "^4.9.3",
"builtin-modules": "^3.3.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"karma": "^6.4.1",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-webpack": "^5.0.0",
"mocha": "^10.1.0",
"rollup": "^3.2.5",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-wasm": "^3.0.0",
"sinon": "^14.0.2",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4",
"virgil-crypto": "^4.0.0"
},
"dependencies": {
"@types/base-64": "^1.0.0",
"@types/utf8": "^3.0.1",
"@virgilsecurity/crypto-types": "^1.0.0",
"@virgilsecurity/data-utils": "^1.0.0",
"base-64": "^1.0.0",
"dotenv-webpack": "^8.0.1",
"fetch-ponyfill": "^7.1.0",
"karma-typescript": "^5.5.3",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"utf8": "^3.0.0",
"util": "^0.12.5",
"webpack": "^5.74.0"
},
"type": "commonjs",
"scripts": {
"clean": "rimraf .rpt2_cache dist",
"build": "rollup -c",
"prepare": "npm run clean && npm run build",
"test:node": "ts-mocha -p tsconfig.spec.json \"src/**/*.test.ts\" --require scripts/register-assert --timeout 10000",
"test:browser": "karma start",
"test": "npm run test:node",
"preversion": "npm run test",
"version": "npm run build",
"docs": "typedoc src"
}
}