bitwarden-estensione-browser/package.json

95 lines
3.5 KiB
JSON
Raw Normal View History

2018-05-11 19:47:18 +02:00
{
"name": "@bitwarden/cli",
"description": "A secure and free password manager for all of your devices.",
2020-12-02 21:38:25 +01:00
"version": "1.13.3",
2018-05-11 19:47:18 +02:00
"keywords": [
"bitwarden",
"password",
"vault",
2018-05-15 06:06:41 +02:00
"password manager",
"cli"
2018-05-11 19:47:18 +02:00
],
2020-02-19 04:36:04 +01:00
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
2018-05-11 19:47:18 +02:00
"homepage": "https://bitwarden.com",
"repository": {
"type": "git",
"url": "https://github.com/bitwarden/cli"
},
"license": "GPL-3.0",
2018-05-15 05:16:59 +02:00
"scripts": {
2018-05-15 05:58:35 +02:00
"sub:init": "git submodule update --init --recursive",
"sub:update": "git submodule update --remote",
"sub:pull": "git submodule foreach git pull origin master",
2018-05-15 05:16:59 +02:00
"clean": "rimraf dist/**/*",
"symlink:win": "rmdir /S /Q ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
2020-01-27 18:46:12 +01:00
"symlink:mac": "npm run symlink:lin",
"symlink:lin": "rm -rf ./jslib && ln -s ../jslib ./jslib",
2018-09-18 17:59:56 +02:00
"build": "webpack",
"build:debug": "npm run build && node --inspect ./build/bw.js",
2018-09-18 17:59:56 +02:00
"build:watch": "webpack --watch",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
2018-05-16 18:37:19 +02:00
"package": "npm run package:win | npm run package:mac | npm run package:lin",
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
"package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
"debug": "node --inspect ./build/bw.js",
2018-05-16 23:48:17 +02:00
"dist": "npm run build:prod && npm run clean && npm run package",
"dist:win": "npm run build:prod && npm run clean && npm run package:win",
"dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
"dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
2018-05-15 06:45:42 +02:00
"publish:npm": "npm run build:prod && npm publish --access public",
2018-05-15 05:16:59 +02:00
"lint": "tslint src/**/*.ts spec/**/*.ts || true",
"lint:fix": "tslint src/**/*.ts spec/**/*.ts --fix"
},
2018-05-11 19:47:18 +02:00
"bin": {
2018-05-15 05:57:02 +02:00
"bw": "./build/bw.js"
2018-05-11 19:47:18 +02:00
},
2018-05-16 18:37:19 +02:00
"pkg": {
"assets": "./build/**/*"
},
2018-05-11 19:47:18 +02:00
"devDependencies": {
"@types/commander": "^2.12.2",
2018-05-17 21:55:44 +02:00
"@types/form-data": "^2.2.1",
2018-09-12 05:15:36 +02:00
"@types/inquirer": "^0.0.43",
2019-02-08 04:17:22 +01:00
"@types/jsdom": "^12.2.1",
2018-09-12 05:15:36 +02:00
"@types/lowdb": "^1.0.5",
2020-04-14 21:40:20 +02:00
"@types/lunr": "^2.3.3",
2020-08-12 21:42:24 +02:00
"@types/node": "^10.17.28",
2018-09-12 05:15:36 +02:00
"@types/node-fetch": "^2.1.2",
"@types/node-forge": "^0.7.5",
"@types/papaparse": "^4.5.3",
"@types/tldjs": "^2.3.0",
2018-11-15 21:46:40 +01:00
"@types/zxcvbn": "4.4.0",
2018-09-12 05:15:36 +02:00
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"pkg": "4.3.4",
2020-08-12 21:42:24 +02:00
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
2019-01-25 21:10:48 +01:00
"tslint-loader": "^3.5.4",
2020-09-03 20:33:10 +02:00
"typescript": "3.8.3",
2019-01-25 21:10:48 +01:00
"webpack": "^4.29.0",
2019-02-08 05:15:17 +01:00
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
2018-05-11 19:47:18 +02:00
},
"dependencies": {
2018-11-10 04:37:24 +01:00
"big-integer": "1.6.36",
"browser-process-hrtime": "1.0.0",
2018-05-15 16:50:06 +02:00
"chalk": "2.4.1",
2018-09-12 05:15:36 +02:00
"commander": "2.18.0",
2018-05-17 21:55:44 +02:00
"form-data": "2.3.2",
2020-11-13 20:54:33 +01:00
"https-proxy-agent": "4.0.0",
2018-09-12 05:15:36 +02:00
"inquirer": "6.2.0",
2019-02-07 22:56:36 +01:00
"jsdom": "13.2.0",
2018-05-16 21:22:32 +02:00
"lowdb": "1.0.0",
2018-09-04 03:51:35 +02:00
"lunr": "2.3.3",
2018-09-12 05:15:36 +02:00
"node-fetch": "2.2.0",
"node-forge": "0.7.6",
"open": "7.1.0",
"papaparse": "4.6.0",
2018-11-15 21:46:40 +01:00
"tldjs": "2.3.1",
"zxcvbn": "4.4.2"
2018-05-11 19:47:18 +02:00
}
2020-11-13 20:54:33 +01:00
}