forked from Authenticator-Extension/Authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
72
73
74
75
76
77
{
"name": "authenticator-extension",
"version": "0.1.0",
"description": "Authenticator generates 2-Step Verification codes in your browser.",
"scripts": {
"compile": "bash scripts/build.sh firefox",
"dev:chrome": "npm run pretest && webpack --config ./webpack.watch.js",
"chrome": "bash scripts/build.sh chrome",
"firefox": "bash scripts/build.sh firefox",
"prod": "bash scripts/build.sh prod",
"pretest": "bash scripts/build.sh test",
"test": "node scripts/test-runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Authenticator-Extension/Authenticator.git"
},
"author": "Authenticator Extension",
"license": "MIT",
"bugs": {
"url": "https://github.com/Authenticator-Extension/Authenticator/issues"
},
"homepage": "https://github.com/Authenticator-Extension/Authenticator#readme",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/argon2-browser": "^1.12.0",
"@types/chai": "^4.2.14",
"@types/chrome": "^0.0.86",
"@types/crypto-js": "^4.0.1",
"@types/mocha": "^8.0.4",
"@types/puppeteer": "^5.4.1",
"@types/sinon": "^9.0.9",
"@types/sinon-chai": "^3.2.5",
"@types/sinon-chrome": "^2.2.10",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/test-utils": "^1.1.1",
"base64-loader": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"fork-ts-checker-webpack-plugin": "^4.1.4",
"lodash": "^4.17.21",
"mocha": "^8.2.1",
"npm-license-generator": "^1.1.0",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"puppeteer": "^5.5.0",
"sass": "^1.26.11",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"sinon-chrome": "^3.0.1",
"ts-loader": "^6.2.2",
"typescript": "^3.9.2",
"url-loader": "^2.3.0",
"vue-loader": "^15.9.2",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-extension-reloader": "^1.1.4",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/lodash": "^4.14.166",
"argon2-browser": "^1.15.1",
"crypto-js": "^4.0.0",
"jsqr": "^1.3.1",
"node-gost-crypto": "^1.0.2",
"qrcode-generator": "^1.4.4",
"qrcode-reader": "^1.0.4",
"uuid": "^3.4.0",
"vue": "^2.6.12",
"vue2-dragula": "^2.5.4",
"vuex": "^3.4.0"
}
}