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"
|
|
|
|
],
|
2018-01-06 13:58:24 -05:00
|
|
|
"author": "8bit Solutions LLC",
|
|
|
|
"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",
|
2018-04-18 13:43:42 -04:00
|
|
|
"lint": "tslint src/**/*.ts spec/**/*.ts || true",
|
|
|
|
"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": {
|
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",
|
2018-08-13 09:42:52 -04:00
|
|
|
"@types/lunr": "^2.1.6",
|
2018-09-11 22:47:19 -04:00
|
|
|
"@types/node": "^10.9.4",
|
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",
|
2020-01-27 09:18:18 -05:00
|
|
|
"electron": "6.1.7",
|
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",
|
2019-01-21 23:38:16 -05:00
|
|
|
"tslint": "^5.12.1",
|
2018-04-21 12:57:29 -04:00
|
|
|
"typemoq": "^2.1.0",
|
2019-01-21 23:38:16 -05:00
|
|
|
"typescript": "3.2.4"
|
2018-04-17 16:15:19 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-01-21 23:38:16 -05:00
|
|
|
"@angular/animations": "7.2.1",
|
2019-03-27 19:22:59 +01:00
|
|
|
"@angular/cdk": "7.2.1",
|
2019-01-21 23:38:16 -05:00
|
|
|
"@angular/common": "7.2.1",
|
|
|
|
"@angular/compiler": "7.2.1",
|
|
|
|
"@angular/core": "7.2.1",
|
|
|
|
"@angular/forms": "7.2.1",
|
|
|
|
"@angular/platform-browser": "7.2.1",
|
|
|
|
"@angular/platform-browser-dynamic": "7.2.1",
|
|
|
|
"@angular/router": "7.2.1",
|
|
|
|
"@angular/upgrade": "7.2.1",
|
2020-01-09 17:27:07 -05:00
|
|
|
"@microsoft/signalr": "3.1.0",
|
|
|
|
"@microsoft/signalr-protocol-msgpack": "3.1.0",
|
2018-11-07 22:54:56 -05:00
|
|
|
"big-integer": "1.6.36",
|
2019-03-16 11:26:31 -04:00
|
|
|
"chalk": "2.4.1",
|
2019-03-15 22:33:19 -04:00
|
|
|
"commander": "2.18.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",
|
2018-12-26 14:55:21 -05:00
|
|
|
"electron-log": "2.2.17",
|
2019-03-11 22:36:29 -04:00
|
|
|
"electron-store": "1.3.0",
|
2020-01-27 09:18:18 -05:00
|
|
|
"electron-updater": "4.2.0",
|
2018-05-17 15:35:02 -04:00
|
|
|
"form-data": "2.3.2",
|
2020-01-27 08:57:59 -05:00
|
|
|
"https-proxy-agent": "4.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",
|
|
|
|
"papaparse": "4.6.0",
|
2019-01-21 23:38:16 -05:00
|
|
|
"rxjs": "6.3.3",
|
2018-10-13 22:21:54 -04:00
|
|
|
"tldjs": "2.3.1",
|
2019-01-21 23:38:16 -05:00
|
|
|
"zone.js": "0.8.28",
|
2018-11-12 22:54:18 -05:00
|
|
|
"zxcvbn": "4.4.2"
|
2018-01-03 21:20:58 -05:00
|
|
|
}
|
|
|
|
}
|