1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-17 07:53:50 +00:00
Files
jslib/package.json
2021-12-10 15:03:16 +01:00

37 lines
1.0 KiB
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": {
"clean": "rimraf dist/**/*",
"build": "npm run clean && ttsc",
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"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": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\""
},
"workspaces": [
"common",
"angular",
"electron",
"node"
],
"engines": {
"node": "~14",
"npm": "~7"
}
}