UNPKG

3.38 kBJSONView Raw
1{
2 "name": "@bitwarden/cli",
3 "description": "A secure and free password manager for all of your devices.",
4 "version": "1.10.0",
5 "keywords": [
6 "bitwarden",
7 "password",
8 "vault",
9 "password manager",
10 "cli"
11 ],
12 "author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
13 "homepage": "https://bitwarden.com",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/bitwarden/cli"
17 },
18 "license": "GPL-3.0",
19 "scripts": {
20 "sub:init": "git submodule update --init --recursive",
21 "sub:update": "git submodule update --remote",
22 "sub:pull": "git submodule foreach git pull origin master",
23 "clean": "rimraf dist/**/*",
24 "symlink:win": "rmdir /S /Q ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
25 "symlink:mac": "npm run symlink:lin",
26 "symlink:lin": "rm -rf ./jslib && ln -s ../jslib ./jslib",
27 "build": "webpack",
28 "build:watch": "webpack --watch",
29 "build:prod": "cross-env NODE_ENV=production webpack",
30 "build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
31 "package": "npm run package:win | npm run package:mac | npm run package:lin",
32 "package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
33 "package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
34 "package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
35 "dist": "npm run build:prod && npm run clean && npm run package",
36 "dist:win": "npm run build:prod && npm run clean && npm run package:win",
37 "dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
38 "dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
39 "publish:npm": "npm run build:prod && npm publish --access public",
40 "lint": "tslint src/**/*.ts spec/**/*.ts || true",
41 "lint:fix": "tslint src/**/*.ts spec/**/*.ts --fix"
42 },
43 "bin": {
44 "bw": "./build/bw.js"
45 },
46 "pkg": {
47 "assets": "./build/**/*"
48 },
49 "devDependencies": {
50 "@types/commander": "^2.12.2",
51 "@types/form-data": "^2.2.1",
52 "@types/inquirer": "^0.0.43",
53 "@types/jsdom": "^12.2.1",
54 "@types/lowdb": "^1.0.5",
55 "@types/lunr": "^2.3.3",
56 "@types/node": "^10.9.4",
57 "@types/node-fetch": "^2.1.2",
58 "@types/node-forge": "^0.7.5",
59 "@types/papaparse": "^4.5.3",
60 "@types/tldjs": "^2.3.0",
61 "@types/zxcvbn": "4.4.0",
62 "clean-webpack-plugin": "^0.1.19",
63 "copy-webpack-plugin": "^4.5.2",
64 "cross-env": "^5.2.0",
65 "pkg": "4.3.4",
66 "ts-loader": "^5.3.3",
67 "tslint": "^5.12.1",
68 "tslint-loader": "^3.5.4",
69 "typescript": "3.2.4",
70 "webpack": "^4.29.0",
71 "webpack-cli": "^3.2.1",
72 "webpack-node-externals": "^1.7.2"
73 },
74 "dependencies": {
75 "big-integer": "1.6.36",
76 "chalk": "2.4.1",
77 "commander": "2.18.0",
78 "form-data": "2.3.2",
79 "https-proxy-agent": "4.0.0",
80 "inquirer": "6.2.0",
81 "jsdom": "13.2.0",
82 "lowdb": "1.0.0",
83 "lunr": "2.3.3",
84 "node-fetch": "2.2.0",
85 "node-forge": "0.7.6",
86 "papaparse": "4.6.0",
87 "tldjs": "2.3.1",
88 "zxcvbn": "4.4.2"
89 }
90}