1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00
bitwarden-browser/package.json
2018-04-14 23:20:37 -04:00

58 lines
1.5 KiB
JSON

{
"name": "@bitwarden/jslib",
"version": "0.0.0",
"description": "Common code used across Bitwarden JavaScript projects.",
"keywords": [
"bitwarden"
],
"author": "8bit Solutions LLC",
"homepage": "https://bitwarden.com",
"repository": {
"type": "git",
"url": "https://github.com/bitwarden/jslib"
},
"license": "GPL-3.0",
"module": "src/index.ts",
"typings": "src/index.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**/*",
"build": "tsc && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
"start": "tsc -watch",
"lint": "tslint src/**/*.ts || true",
"lint:fix": "tslint src/**/*.ts --fix",
"pub": "npm run build && npm publish --access public"
},
"devDependencies": {
"@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",
"@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",
"angular2-toaster": "4.0.2",
"angulartics2": "5.0.1",
"core-js": "2.4.1",
"lunr": "2.1.6",
"node-forge": "0.7.1",
"rimraf": "^2.6.2",
"rxjs": "5.5.6",
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typescript": "^2.7.1",
"zone.js": "0.8.19"
}
}