-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "locker-core-js",
"version": "1.0.0",
"description": "Core JS for Locker Password Manager",
"scripts": {
"superclean": "yarn prettier && yarn lint:fix",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.cystack.org/locker/core-js.git"
},
"license": "ISC",
"devDependencies": {
"@noble/hashes": "^2.2.0",
"@types/chrome": "^0.0.329",
"@types/node": "^25.6.0",
"@types/node-forge": "^1.3.14",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"big-integer": "^1.6.52",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"node-forge": "^1.3.1",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"tldts": "^7.0.10",
"typescript": "^5.2.2"
}
}