2018-01-03 21:20:58 -05:00
|
|
|
{
|
2018-01-04 23:51:02 -05:00
|
|
|
"name": "@bitwarden/jslib",
|
2018-04-04 08:22:55 -04:00
|
|
|
"version": "0.0.0",
|
2018-02-27 14:19:31 -05:00
|
|
|
"description": "Common code used across Bitwarden JavaScript projects.",
|
2018-01-06 10:23:16 -05:00
|
|
|
"keywords": [
|
|
|
|
"bitwarden"
|
|
|
|
],
|
2020-02-18 22:33:47 -05:00
|
|
|
"author": "Bitwarden Inc.",
|
2018-01-06 13:58:24 -05:00
|
|
|
"homepage": "https://bitwarden.com",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bitwarden/jslib"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0",
|
2018-01-06 09:19:39 -05:00
|
|
|
"scripts": {
|
2018-04-18 13:45:31 -04:00
|
|
|
"clean": "rimraf dist/**/*",
|
|
|
|
"build": "npm run clean && tsc",
|
|
|
|
"build:watch": "npm run clean && tsc -watch",
|
2021-02-04 09:49:23 -06:00
|
|
|
"lint": "tslint 'src/**/*.ts' 'spec/**/*.ts'",
|
|
|
|
"lint:fix": "tslint 'src/**/*.ts' 'spec/**/*.ts' --fix",
|
2018-04-18 12:59:48 -04:00
|
|
|
"test": "karma start ./spec/support/karma.conf.js --single-run",
|
|
|
|
"test:watch": "karma start ./spec/support/karma.conf.js",
|
|
|
|
"test:node": "npm run build && jasmine",
|
2018-04-25 16:50:44 -04:00
|
|
|
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\""
|
2018-01-06 09:19:39 -05:00
|
|
|
},
|
2018-01-03 21:20:58 -05:00
|
|
|
"devDependencies": {
|
2020-12-30 15:08:02 -06:00
|
|
|
"@fluffy-spoon/substitute": "^1.179.0",
|
2019-03-15 22:33:19 -04:00
|
|
|
"@types/commander": "^2.12.2",
|
2018-05-17 15:35:02 -04:00
|
|
|
"@types/form-data": "^2.2.1",
|
2019-03-18 10:33:29 -04:00
|
|
|
"@types/inquirer": "^0.0.43",
|
2019-03-29 00:09:21 -04:00
|
|
|
"@types/jasmine": "^3.3.12",
|
2018-09-11 23:13:04 -04:00
|
|
|
"@types/lowdb": "^1.0.5",
|
2020-04-15 04:16:18 +09:00
|
|
|
"@types/lunr": "^2.3.3",
|
2020-08-12 21:42:42 +02:00
|
|
|
"@types/node": "^10.17.28",
|
2018-09-11 23:13:04 -04:00
|
|
|
"@types/node-fetch": "^2.1.2",
|
2018-09-11 17:29:47 -04:00
|
|
|
"@types/node-forge": "^0.7.5",
|
|
|
|
"@types/papaparse": "^4.5.3",
|
2018-10-13 22:21:54 -04:00
|
|
|
"@types/tldjs": "^2.3.0",
|
2018-04-17 16:15:19 -04:00
|
|
|
"@types/webcrypto": "0.0.28",
|
2018-11-12 22:54:18 -05:00
|
|
|
"@types/zxcvbn": "^4.4.0",
|
2018-04-18 13:38:57 -04:00
|
|
|
"concurrently": "3.5.1",
|
2019-03-27 14:41:06 -04:00
|
|
|
"cssstyle": "1.2.1",
|
2021-01-26 22:49:47 +01:00
|
|
|
"electron": "11.1.1",
|
2019-03-27 14:41:06 -04:00
|
|
|
"jasmine": "^3.3.1",
|
|
|
|
"jasmine-core": "^3.3.0",
|
2018-04-17 16:15:19 -04:00
|
|
|
"jasmine-spec-reporter": "^4.2.1",
|
2018-05-15 09:02:57 -04:00
|
|
|
"jasmine-ts-console-reporter": "^3.1.1",
|
2019-03-27 14:41:06 -04:00
|
|
|
"karma": "^4.0.1",
|
2018-04-17 16:15:19 -04:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
2019-03-27 14:41:06 -04:00
|
|
|
"karma-cli": "^2.0.0",
|
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.5",
|
|
|
|
"karma-detect-browsers": "^2.3.3",
|
2018-05-07 11:43:14 -04:00
|
|
|
"karma-edge-launcher": "^0.4.2",
|
|
|
|
"karma-firefox-launcher": "^1.1.0",
|
2019-03-27 14:41:06 -04:00
|
|
|
"karma-jasmine": "^2.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "^1.4.0",
|
2018-05-07 11:43:14 -04:00
|
|
|
"karma-safari-launcher": "^1.0.0",
|
2019-03-27 14:41:06 -04:00
|
|
|
"karma-typescript": "^4.0.0",
|
2018-04-18 12:59:48 -04:00
|
|
|
"nodemon": "^1.17.3",
|
2018-04-17 16:15:19 -04:00
|
|
|
"rimraf": "^2.6.2",
|
2020-12-11 10:44:57 -06:00
|
|
|
"ts-node": "^9.1.0",
|
2020-08-12 21:42:42 +02:00
|
|
|
"tslint": "^6.1.3",
|
2018-04-21 12:57:29 -04:00
|
|
|
"typemoq": "^2.1.0",
|
2020-08-17 18:14:40 +02:00
|
|
|
"typescript": "3.8.3"
|
2018-04-17 16:15:19 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-17 18:14:40 +02:00
|
|
|
"@angular/animations": "9.1.12",
|
|
|
|
"@angular/cdk": "9.2.4",
|
|
|
|
"@angular/common": "9.1.12",
|
|
|
|
"@angular/compiler": "9.1.12",
|
|
|
|
"@angular/core": "9.1.12",
|
|
|
|
"@angular/forms": "9.1.12",
|
|
|
|
"@angular/platform-browser": "9.1.12",
|
|
|
|
"@angular/platform-browser-dynamic": "9.1.12",
|
|
|
|
"@angular/router": "9.1.12",
|
2020-01-09 17:27:07 -05:00
|
|
|
"@microsoft/signalr": "3.1.0",
|
|
|
|
"@microsoft/signalr-protocol-msgpack": "3.1.0",
|
2020-07-23 19:32:20 +02:00
|
|
|
"@nodert-win10-rs4/windows.security.credentials.ui": "^0.4.4",
|
2018-11-07 22:54:56 -05:00
|
|
|
"big-integer": "1.6.36",
|
2021-01-25 15:03:28 -05:00
|
|
|
"browser-hrtime": "^1.1.8",
|
2019-03-16 11:26:31 -04:00
|
|
|
"chalk": "2.4.1",
|
2021-01-29 15:08:52 -06:00
|
|
|
"commander": "7.0.0",
|
2019-01-21 23:38:16 -05:00
|
|
|
"core-js": "2.6.2",
|
2018-12-18 17:00:07 -05:00
|
|
|
"duo_web_sdk": "git+https://github.com/duosecurity/duo_web_sdk.git",
|
2021-01-26 22:49:47 +01:00
|
|
|
"electron-log": "4.3.0",
|
|
|
|
"electron-store": "6.0.1",
|
2020-09-24 11:41:54 -04:00
|
|
|
"electron-updater": "4.3.5",
|
2020-12-21 19:26:16 +01:00
|
|
|
"forcefocus": "^1.1.0",
|
2018-05-17 15:35:02 -04:00
|
|
|
"form-data": "2.3.2",
|
2021-01-27 20:08:56 -05:00
|
|
|
"https-proxy-agent": "5.0.0",
|
2019-03-18 10:33:29 -04:00
|
|
|
"inquirer": "6.2.0",
|
2019-02-07 16:55:49 -05:00
|
|
|
"jsdom": "13.2.0",
|
2019-07-31 23:41:13 -04:00
|
|
|
"keytar": "4.13.0",
|
2018-05-31 09:07:56 -04:00
|
|
|
"lowdb": "1.0.0",
|
2018-09-03 21:51:19 -04:00
|
|
|
"lunr": "2.3.3",
|
2019-03-19 11:31:53 -04:00
|
|
|
"ngx-infinite-scroll": "7.0.1",
|
2018-09-11 23:13:04 -04:00
|
|
|
"node-fetch": "2.2.0",
|
2018-09-11 17:29:47 -04:00
|
|
|
"node-forge": "0.7.6",
|
2020-08-03 15:24:26 -04:00
|
|
|
"open": "7.1.0",
|
2018-09-11 17:29:47 -04:00
|
|
|
"papaparse": "4.6.0",
|
2020-08-17 18:14:40 +02:00
|
|
|
"rxjs": "6.6.2",
|
2018-10-13 22:21:54 -04:00
|
|
|
"tldjs": "2.3.1",
|
2020-08-17 18:14:40 +02:00
|
|
|
"zone.js": "0.9.1",
|
2018-11-12 22:54:18 -05:00
|
|
|
"zxcvbn": "4.4.2"
|
2018-01-03 21:20:58 -05:00
|
|
|
}
|
|
|
|
}
|