bitwarden-estensione-browser/package.json

54 lines
1.8 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.",
2018-05-15 06:45:42 +02:00
"version": "0.0.5",
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
],
"author": "8bit Solutions LLC <hello@bitwarden.com> (https://bitwarden.com)",
"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",
2018-05-15 05:16:59 +02:00
"clean": "rimraf dist/**/*",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:prod:watch": "cross-env NODE_ENV=production webpack --config webpack.config.js --watch",
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
},
"devDependencies": {
"@types/commander": "^2.12.2",
2018-05-15 05:16:59 +02:00
"@types/node": "^10.0.8",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.4",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.7.1",
"webpack": "^3.10.0"
2018-05-11 19:47:18 +02:00
},
"dependencies": {
2018-05-15 05:42:20 +02:00
"commander": "2.15.1",
2018-05-13 06:19:14 +02:00
"node-fetch": "2.1.2",
2018-05-15 05:16:59 +02:00
"node-forge": "0.7.1",
"node-localstorage": "1.3.1"
2018-05-11 19:47:18 +02:00
}
}