1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-20 09:23:23 +00:00

Split jslib into multiple modules (#363)

* Split jslib into multiple modules
This commit is contained in:
Oscar Hinton
2021-06-03 18:58:57 +02:00
committed by GitHub
parent b1d9b84eae
commit 1016bbfb9e
509 changed files with 8838 additions and 1887 deletions

View File

@@ -14,10 +14,10 @@
"license": "GPL-3.0",
"scripts": {
"clean": "rimraf dist/**/*",
"build": "npm run clean && tsc",
"build:watch": "npm run clean && tsc -watch",
"lint": "tslint 'src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' 'spec/**/*.ts' --fix",
"build": "npm run clean && ttsc",
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"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",
@@ -25,19 +25,9 @@
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.202.0",
"@types/inquirer": "^7.3.1",
"@types/jasmine": "^3.6.9",
"@types/lowdb": "^1.0.9",
"@types/lunr": "^2.3.3",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@types/node-forge": "^0.9.7",
"@types/papaparse": "^5.2.5",
"@types/tldjs": "^2.3.0",
"@types/webcrypto": "0.0.28",
"@types/zxcvbn": "^4.4.1",
"@types/jasmine": "^3.7.6",
"@types/node": "^14.17.1",
"concurrently": "^6.1.0",
"electron": "11.4.5",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"jasmine-ts-console-reporter": "^3.1.1",
@@ -54,48 +44,18 @@
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.0",
"tslint": "^6.1.3",
"ttypescript": "^1.5.12",
"typemoq": "^2.1.0",
"typescript": "4.1.5",
"typescript-transform-paths": "^2.2.3",
"webpack": "^4.46.0"
},
"dependencies": {
"@angular/animations": "^11.2.11",
"@angular/cdk": "^11.2.10",
"@angular/common": "^11.2.11",
"@angular/compiler": "^11.2.11",
"@angular/core": "^11.2.11",
"@angular/forms": "^11.2.11",
"@angular/platform-browser": "^11.2.11",
"@angular/platform-browser-dynamic": "^11.2.11",
"@angular/router": "^11.2.11",
"@microsoft/signalr": "3.1.13",
"@microsoft/signalr-protocol-msgpack": "3.1.13",
"@nodert-win10-rs4/windows.security.credentials.ui": "^0.4.4",
"big-integer": "1.6.48",
"browser-hrtime": "^1.1.8",
"chalk": "^4.1.1",
"commander": "7.2.0",
"duo_web_sdk": "git+https://github.com/duosecurity/duo_web_sdk.git",
"electron-log": "4.3.5",
"electron-store": "8.0.0",
"electron-updater": "4.3.9",
"forcefocus": "^1.1.0",
"form-data": "4.0.0",
"https-proxy-agent": "5.0.0",
"inquirer": "^8.0.0",
"keytar": "7.6.0",
"lowdb": "1.0.0",
"lunr": "2.3.9",
"ngx-infinite-scroll": "10.0.1",
"node-fetch": "2.6.1",
"node-forge": "0.10.0",
"open": "^8.0.6",
"papaparse": "5.3.0",
"rxjs": "6.6.7",
"tldjs": "2.3.1",
"zone.js": "0.11.4",
"zxcvbn": "4.4.2"
"@bitwarden/jslib-angular": "file:angular",
"@bitwarden/jslib-common": "file:common",
"@bitwarden/jslib-electron": "file:electron",
"@bitwarden/jslib-node": "file:node"
},
"engines": {
"node": "~14",