-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "privacy-pass",
"version": "3.0.6",
"contributors": [
"Suphanat Chunhapanya <[email protected]>",
"Armando Faz <[email protected]>"
],
"main": "index.js",
"license": "BSD-3-Clause",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"sjcl": "cd node_modules/sjcl && perl configure --without-all --with-ecc --with-convenience --with-codecBytes --with-codecHex --compress=none && make sjcl.js",
"prebuild": "npm run sjcl",
"build": "webpack",
"pretest": "npm run sjcl",
"test": "tsc -b && node --experimental-vm-modules node_modules/jest/bin/jest.js --ci",
"lint": "eslint .",
"clean": "rimraf dist"
},
"dependencies": {
"asn1-parser": "1.1.8",
"buffer": "6.0.3",
"keccak": "3.0.2",
"qs": "6.10.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.5",
"redux": "4.1.1",
"sjcl": "1.0.8",
"stream-browserify": "3.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.159",
"@types/jest": "27.0.2",
"@types/qs": "6.9.6",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"copy-webpack-plugin": "8.1.1",
"css-loader": "5.2.4",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-security": "1.4.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.1",
"jest": "28.1.0",
"mini-css-extract-plugin": "1.6.0",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"sass": "1.32.13",
"sass-loader": "11.1.1",
"ts-loader": "9.2.8",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.6.3",
"webpack-cli": "4.9.2"
}
}