1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-30 11:15:36 +02:00
bitwarden-browser/package.json
Oscar Hinton 2d03c486b6 Add multiple build targets, for umd and es5. (#1)
* Add multiple build targets, for umd, es5 and es6.

* Remove lodash.camelcase.
2018-01-06 10:04:16 -05:00

35 lines
955 B
JSON

{
"name": "@bitwarden/jslib",
"version": "0.0.11",
"description": "",
"keywords": [],
"main": "dist/index.umd.js",
"module": "dist/index.es5.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"license": "GPL-3.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
"start": "concurrently \"tsc -w\" \"rollup -c rollup.config.ts -w\""
},
"devDependencies": {
"@types/node": "^8.0.0",
"concurrently": "^3.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.53.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2"
}
}