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

28 lines
679 B
JSON
Raw Normal View History

2018-01-04 03:20:58 +01:00
{
2018-01-05 05:51:02 +01:00
"name": "@bitwarden/jslib",
2018-01-06 17:39:46 +01:00
"version": "0.0.12",
2018-01-06 16:05:54 +01:00
"description": "Common code used across bitwarden JavaScript projects.",
2018-01-06 16:23:16 +01:00
"keywords": [
"bitwarden"
],
2018-01-06 17:39:46 +01:00
"module": "dist/es/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"license": "GPL-3.0",
2018-01-06 15:19:39 +01:00
"scripts": {
2018-01-06 16:23:16 +01:00
"prebuild": "rimraf dist/**/*",
2018-01-06 17:39:46 +01:00
"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"
2018-01-06 15:19:39 +01:00
},
2018-01-04 03:20:58 +01:00
"devDependencies": {
"rimraf": "^2.6.2",
2018-01-04 03:20:58 +01:00
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2"
2018-01-04 03:20:58 +01:00
}
}