-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "passwordsafe",
"version": "1.0.0",
"description": "A web extension for stroring users passwords and retrieve them when needed",
"main": "index.js",
"scripts": {
"start-dev": "webpack-dev-server --open",
"build": "webpack",
"test": "mocha tests"
},
"devDependencies": {
"@types/chrome": "^0.0.178",
"@typescript-eslint/eslint-plugin": "~5.12.0",
"@typescript-eslint/parser": "~5.12.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"crypto-browserify": "^3.12.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.6",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/candiepih/PasswordSafe.git"
},
"keywords": [
"security",
"passwords",
"encryption",
"AES"
],
"author": "Alex Steve @candiepih",
"license": "MIT",
"bugs": {
"url": "https://github.com/candiepih/PasswordSafe/issues"
},
"homepage": "https://github.com/candiepih/PasswordSafe#readme",
"dependencies": {
"crypto-ts": "^1.0.2",
"jsdom": "^19.0.0"
}
}