-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 972 Bytes
/
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
{
"name": "silver-train",
"version": "1.0.0",
"description": "offline password manager",
"main": "src/index.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huijari/silver-train.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/huijari/silver-train/issues"
},
"homepage": "https://github.com/huijari/silver-train#readme",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^17.0.35",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.2"
},
"dependencies": {
"clipboardy": "^3.0.0",
"conf": "^10.1.2",
"csv-parse": "^5.1.0",
"enquirer": "^2.3.6",
"otpauth": "^7.1.3",
"secure-random-password": "^0.2.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"useTabs": true
}
}