-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.23 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
{
"name": "@protontech/pmcrypto",
"version": "8.2.0",
"description": "",
"main": "./lib/index.ts",
"sideEffects": false,
"browser": {
"buffer": false,
"stream": false
},
"files": [
"lib/",
"tsconfig.json"
],
"scripts": {
"test": "karma start karma.conf.js",
"lint": "eslint lib test --quiet",
"postversion": "git push && git push --tags",
"test-type-definitions": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/pmcrypto.git"
},
"author": "ProtonMail",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProtonMail/pmcrypto/issues"
},
"homepage": "https://github.com/ProtonMail/pmcrypto#readme",
"dependencies": {
"@noble/hashes": "^1.6.0",
"@openpgp/web-stream-tools": "~0.1.3",
"jsmimeparser": "npm:@protontech/jsmimeparser@^3.0.1",
"openpgp": "npm:@protontech/openpgp@~6.0.2-patch.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/elliptic": "^6.4.18",
"@types/mocha": "^9.1.1",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bn.js": "^5.2.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"elliptic": "^6.6.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.31.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webkit-launcher": "^1.3.1",
"karma-webpack": "^5.0.1",
"mocha": "^11.0.1",
"playwright": "^1.48.2",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"web-streams-polyfill": "^3.3.3",
"webpack": "^5.96.1",
"webpack-cli": "^4.10.0"
}
}