bitwarden-estensione-browser/package.json

69 lines
2.0 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-01-06 16:23:16 +01:00
"prebuild": "rimraf dist/**/*",
2018-04-17 22:15:19 +02:00
"build": "tsc",
2018-04-17 22:17:04 +02:00
"build:watch": "tsc -watch",
2018-01-06 17:39:46 +01:00
"lint": "tslint src/**/*.ts || true",
2018-01-07 04:19:10 +01:00
"lint:fix": "tslint src/**/*.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",
"test:node:watch": "npm run build:watch & nodemon -w ./dist jasmine"
2018-01-06 15:19:39 +01:00
},
2018-01-04 03:20:58 +01:00
"devDependencies": {
2018-04-17 22:15:19 +02:00
"@types/jasmine": "^2.8.2",
"@types/lunr": "2.1.5",
"@types/node": "8.0.19",
"@types/node-forge": "0.7.1",
"@types/papaparse": "4.1.31",
"@types/webcrypto": "0.0.28",
2018-04-18 18:59:48 +02:00
"jasmine": "^3.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
2018-04-17 22:15:19 +02:00
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-typescript": "^3.0.8",
2018-04-18 18:59:48 +02:00
"nodemon": "^1.17.3",
2018-04-17 22:15:19 +02:00
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "^2.7.1"
},
"dependencies": {
"@angular/animations": "5.2.0",
"@angular/common": "5.2.0",
"@angular/compiler": "5.2.0",
"@angular/core": "5.2.0",
"@angular/forms": "5.2.0",
"@angular/http": "5.2.0",
"@angular/platform-browser": "5.2.0",
"@angular/platform-browser-dynamic": "5.2.0",
"@angular/router": "5.2.0",
"@angular/upgrade": "5.2.0",
"angular2-toaster": "4.0.2",
2018-04-04 15:19:21 +02:00
"angulartics2": "5.0.1",
"core-js": "2.4.1",
"lunr": "2.1.6",
"node-forge": "0.7.1",
"rxjs": "5.5.6",
"zone.js": "0.8.19"
2018-01-04 03:20:58 +01:00
}
}