1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-26 21:23:53 +00:00
Files
jslib/package.json
2021-12-10 16:10:05 +01:00

35 lines
762 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": {
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"test": "npm run test --workspaces",
"test:node": "npm run test:node --workspaces"
},
"workspaces": [
"common",
"angular",
"electron",
"node"
],
"engines": {
"node": "~14",
"npm": "~7"
},
"devDependencies": {
"tslint": "^6.1.3"
}
}