UNPKG

3.03 kBJSONView Raw
1{
2 "name": "@bitwarden/cli",
3 "description": "A secure and free password manager for all of your devices.",
4 "version": "1.7.0",
5 "keywords": [
6 "bitwarden",
7 "password",
8 "vault",
9 "password manager",
10 "cli"
11 ],
12 "author": "8bit Solutions LLC <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",
23 "clean": "rimraf dist/**/*",
24 "build": "webpack",
25 "build:watch": "webpack --watch",
26 "build:prod": "cross-env NODE_ENV=production webpack",
27 "build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
28 "package": "npm run package:win | npm run package:mac | npm run package:lin",
29 "package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
30 "package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
31 "package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
32 "dist": "npm run build:prod && npm run clean && npm run package",
33 "dist:win": "npm run build:prod && npm run clean && npm run package:win",
34 "dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
35 "dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
36 "publish:npm": "npm run build:prod && npm publish --access public",
37 "lint": "tslint src/**/*.ts spec/**/*.ts || true",
38 "lint:fix": "tslint src/**/*.ts spec/**/*.ts --fix"
39 },
40 "bin": {
41 "bw": "./build/bw.js"
42 },
43 "pkg": {
44 "assets": "./build/**/*"
45 },
46 "devDependencies": {
47 "@types/commander": "^2.12.2",
48 "@types/form-data": "^2.2.1",
49 "@types/inquirer": "^0.0.43",
50 "@types/lowdb": "^1.0.5",
51 "@types/lunr": "^2.1.6",
52 "@types/node": "^10.9.4",
53 "@types/node-fetch": "^2.1.2",
54 "@types/node-forge": "^0.7.5",
55 "@types/papaparse": "^4.5.3",
56 "@types/tldjs": "^2.3.0",
57 "@types/zxcvbn": "4.4.0",
58 "clean-webpack-plugin": "^0.1.19",
59 "copy-webpack-plugin": "^4.5.2",
60 "cross-env": "^5.2.0",
61 "pkg": "4.3.4",
62 "ts-loader": "^5.1.0",
63 "tslint": "^5.11.0",
64 "tslint-loader": "^3.6.0",
65 "typescript": "^2.7.2",
66 "webpack": "^4.18.0",
67 "webpack-cli": "^3.1.0"
68 },
69 "dependencies": {
70 "big-integer": "1.6.36",
71 "chalk": "2.4.1",
72 "commander": "2.18.0",
73 "form-data": "2.3.2",
74 "inquirer": "6.2.0",
75 "lowdb": "1.0.0",
76 "lunr": "2.3.3",
77 "node-fetch": "2.2.0",
78 "node-forge": "0.7.6",
79 "papaparse": "4.6.0",
80 "tldjs": "2.3.1",
81 "zxcvbn": "4.4.2"
82 }
83}