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

41 lines
1018 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-09 04:27:25 +01:00
"version": "0.0.20",
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 19:58:24 +01:00
"author": "8bit Solutions LLC",
"homepage": "https://bitwarden.com",
"repository": {
"type": "git",
"url": "https://github.com/bitwarden/jslib"
},
"license": "GPL-3.0",
2018-01-08 22:56:53 +01:00
"module": "src/index.ts",
"typings": "src/index.ts",
"files": [
2018-01-09 04:27:25 +01:00
"src",
"dist"
],
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",
2018-01-07 04:19:10 +01:00
"lint:fix": "tslint src/**/*.ts --fix",
2018-01-07 05:22:54 +01:00
"pub": "npm run build && npm publish --access public"
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",
2018-02-08 16:04:47 +01:00
"typescript": "^2.7.1"
},
"dependencies": {
"node-forge": "0.7.1",
"@types/node-forge": "0.7.1",
"@types/webcrypto": "0.0.28"
2018-01-04 03:20:58 +01:00
}
}