bitwarden-estensione-browser/package.json

93 lines
2.9 KiB
JSON
Raw Normal View History

2018-01-04 03:20:58 +01:00
{
2018-01-05 05:51:02 +01:00
"name": "@bitwarden/jslib",
"version": "0.0.0",
2018-02-27 20:19:31 +01:00
"description": "Common code used across Bitwarden JavaScript projects.",
2018-01-06 16:23:16 +01:00
"keywords": [
"bitwarden"
],
2018-01-06 19:58:24 +01: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 15:19:39 +01:00
"scripts": {
2018-04-18 19:45:31 +02:00
"clean": "rimraf dist/**/*",
"build": "npm run clean && tsc",
"build:watch": "npm run clean && tsc -watch",
2018-04-18 19:43:42 +02:00
"lint": "tslint src/**/*.ts spec/**/*.ts || true",
"lint:fix": "tslint src/**/*.ts spec/**/*.ts --fix",
2018-04-18 18:59:48 +02: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 22:50:44 +02: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 15:19:39 +01:00
},
2018-01-04 03:20:58 +01:00
"devDependencies": {
"@types/form-data": "^2.2.1",
2018-08-21 21:16:05 +02:00
"@types/jasmine": "^2.8.8",
2018-09-12 05:13:04 +02:00
"@types/lowdb": "^1.0.5",
"@types/lunr": "^2.1.6",
2018-09-12 04:47:19 +02:00
"@types/node": "^10.9.4",
2018-09-12 05:13:04 +02:00
"@types/node-fetch": "^2.1.2",
2018-09-11 23:29:47 +02:00
"@types/node-forge": "^0.7.5",
"@types/papaparse": "^4.5.3",
2018-10-14 04:21:54 +02:00
"@types/tldjs": "^2.3.0",
2018-04-17 22:15:19 +02:00
"@types/webcrypto": "0.0.28",
2018-11-13 04:54:18 +01:00
"@types/zxcvbn": "^4.4.0",
"concurrently": "3.5.1",
2019-01-22 05:38:16 +01:00
"electron": "3.0.14",
2018-08-21 21:16:05 +02:00
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
2018-04-17 22:15:19 +02:00
"jasmine-spec-reporter": "^4.2.1",
2018-05-15 15:02:57 +02:00
"jasmine-ts-console-reporter": "^3.1.1",
2018-08-21 21:16:05 +02:00
"karma": "^3.0.0",
2018-04-17 22:15:19 +02:00
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
2018-08-21 21:16:05 +02:00
"karma-coverage-istanbul-reporter": "^2.0.1",
2018-05-07 17:43:14 +02:00
"karma-detect-browsers": "^2.3.2",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
2018-08-21 21:16:05 +02:00
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.3.1",
2018-05-07 17:43:14 +02:00
"karma-safari-launcher": "^1.0.0",
2018-08-21 21:16:05 +02:00
"karma-typescript": "^3.0.13",
2018-04-18 18:59:48 +02:00
"nodemon": "^1.17.3",
2018-04-17 22:15:19 +02:00
"rimraf": "^2.6.2",
2019-01-22 05:38:16 +01:00
"tslint": "^5.12.1",
2018-04-21 18:57:29 +02:00
"typemoq": "^2.1.0",
2019-01-22 05:38:16 +01:00
"typescript": "3.2.4"
2018-04-17 22:15:19 +02:00
},
"dependencies": {
2019-01-22 05:38:16 +01:00
"@angular/animations": "7.2.1",
"@angular/common": "7.2.1",
"@angular/compiler": "7.2.1",
"@angular/core": "7.2.1",
"@angular/forms": "7.2.1",
"@angular/http": "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",
2018-10-09 23:59:56 +02:00
"@aspnet/signalr": "1.0.4",
"@aspnet/signalr-protocol-msgpack": "1.0.4",
2018-11-08 04:54:56 +01:00
"big-integer": "1.6.36",
2019-01-22 05:38:16 +01:00
"core-js": "2.6.2",
2018-12-18 23:00:07 +01:00
"duo_web_sdk": "git+https://github.com/duosecurity/duo_web_sdk.git",
2018-12-26 20:55:21 +01:00
"electron-log": "2.2.17",
2019-01-22 05:38:16 +01:00
"electron-updater": "4.0.6",
"form-data": "2.3.2",
2019-02-07 22:55:49 +01:00
"jsdom": "13.2.0",
2018-11-07 18:28:21 +01:00
"keytar": "4.2.1",
2018-05-31 15:07:56 +02:00
"lowdb": "1.0.0",
"lunr": "2.3.3",
2018-09-12 05:13:04 +02:00
"node-fetch": "2.2.0",
2018-09-11 23:29:47 +02:00
"node-forge": "0.7.6",
"papaparse": "4.6.0",
2019-01-22 05:38:16 +01:00
"rxjs": "6.3.3",
2018-10-14 04:21:54 +02:00
"tldjs": "2.3.1",
2019-01-22 05:38:16 +01:00
"zone.js": "0.8.28",
2018-11-13 04:54:18 +01:00
"zxcvbn": "4.4.2"
2018-01-04 03:20:58 +01:00
}
}