1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-30 07:03:21 +00:00
Files
jslib/package.json
2022-01-03 12:49:00 +01:00

44 lines
1022 B
JSON

{
"name": "@bitwarden/jslib",
"version": "0.0.0",
"description": "Common code used across Bitwarden JavaScript projects.",
"keywords": [
"bitwarden"
],
"author": "Bitwarden Inc.",
"homepage": "https://bitwarden.com",
"repository": {
"type": "git",
"url": "https://github.com/bitwarden/jslib"
},
"license": "GPL-3.0",
"scripts": {
"build": "npm run build --workspaces",
"lint": "tslint '*/src/**/*.ts' '*/spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' '*/spec/**/*.ts' --fix",
"prettier": "prettier --write .",
"test": "npm run test --workspaces",
"test:node": "npm run test:node --workspaces",
"prepare": "husky install"
},
"workspaces": [
"common",
"angular",
"electron",
"node"
],
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"tslint": "^6.1.3"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": "~16",
"npm": "~8"
}
}