mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
41 lines
1018 B
JSON
41 lines
1018 B
JSON
{
|
|
"name": "@bitwarden/jslib",
|
|
"version": "0.0.20",
|
|
"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": {
|
|
"rimraf": "^2.6.2",
|
|
"tslint": "^5.8.0",
|
|
"typedoc": "^0.9.0",
|
|
"typescript": "^2.6.2"
|
|
},
|
|
"dependencies": {
|
|
"node-forge": "0.7.1",
|
|
"@types/node-forge": "0.7.1",
|
|
"@types/webcrypto": "0.0.28"
|
|
}
|
|
}
|