Added angular-librarian for manage library
This commit is contained in:
parent
9d174550f5
commit
e625f9fd30
44 changed files with 1867 additions and 228 deletions
106
package.json
106
package.json
|
|
@ -1,43 +1,85 @@
|
|||
{
|
||||
"name": "ng2-fittext",
|
||||
"version": "1.0.24",
|
||||
"description": "An Angular2 directive for autoscale the font size of an element to fit an upper level container.",
|
||||
"main": "index.js",
|
||||
"description": "Ng2 Fittext, an Angular library",
|
||||
"main": "./bundles/ng2-fittext.umd.js",
|
||||
"module": "./ng2-fittext.es5.js",
|
||||
"es2015": "./ng2-fittext.js",
|
||||
"typings": "./ng2-fittext.d.ts",
|
||||
"scripts": {
|
||||
"prepublish": "tsc",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"build": "node ./tasks/build",
|
||||
"g": "node ./node_modules/angular-librarian",
|
||||
"lint": "tslint ./src/**/*.ts",
|
||||
"postbuild": "rimraf build",
|
||||
"posttagVersion": "npm run build && npm publish dist",
|
||||
"prebuild": "rimraf dist out-tsc",
|
||||
"start": "webpack-dev-server --open --config ./webpack/webpack.dev.js",
|
||||
"tagVersion": "np --no-publish",
|
||||
"test": "node ./tasks/test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lokenxo/ng2-fittext.git"
|
||||
},
|
||||
"keywords": [
|
||||
"angular2",
|
||||
"ng2",
|
||||
"fittext",
|
||||
"ng2-fittext",
|
||||
"responsivefont",
|
||||
"ng-fittext angular2",
|
||||
"angular2 fittext",
|
||||
"ng2 fittext"
|
||||
],
|
||||
"author": "Lorenzo Iovino",
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/lokenxo/ng2-fittext/issues"
|
||||
},
|
||||
"homepage": "https://github.com/lokenxo/ng2-fittext#readme",
|
||||
"peerDependencies": {
|
||||
"@angular/core": ">=4.0.1",
|
||||
"rxjs": "^5.4.0"
|
||||
"dependencies": {
|
||||
"@angular/common": "^4.0.0",
|
||||
"@angular/compiler": "^4.0.0",
|
||||
"@angular/core": "^4.0.0",
|
||||
"@angular/platform-browser": "^4.0.0",
|
||||
"@angular/platform-browser-dynamic": "^4.0.0",
|
||||
"core-js": "^2.4.1",
|
||||
"rxjs": "^5.0.1",
|
||||
"zone.js": "0.8.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "~2.2.2"
|
||||
"@angular/compiler-cli": "^4.0.0",
|
||||
"@types/jasmine": "2.5.38",
|
||||
"@types/node": "^6.0.42",
|
||||
"angular-librarian": "1.0.0-beta.14",
|
||||
"angular2-template-loader": "0.6.0",
|
||||
"awesome-typescript-loader": "^3.0.0",
|
||||
"codelyzer": "~3.0.0",
|
||||
"css-loader": "^0.26.1",
|
||||
"css-to-string-loader": "^0.1.3",
|
||||
"extract-text-webpack-plugin": "^2.1.0",
|
||||
"file-loader": "^0.8.5",
|
||||
"fs-extra": "^2.1.2",
|
||||
"html-webpack-plugin": "^2.19.0",
|
||||
"istanbul-instrumenter-loader": "^1.2.0",
|
||||
"jasmine-core": "2.5.2",
|
||||
"jasmine-spec-reporter": "2.5.0",
|
||||
"karma": "1.2.0",
|
||||
"karma-chrome-launcher": "^2.0.0",
|
||||
"karma-coverage-istanbul-reporter": "^1.3.0",
|
||||
"karma-jasmine": "^1.0.2",
|
||||
"karma-phantomjs-launcher": "^1.0.2",
|
||||
"karma-sourcemap-loader": "^0.3.7",
|
||||
"karma-webpack": "^2.0.0",
|
||||
"node-sass": "^4.1.1",
|
||||
"np": "^2.12.0",
|
||||
"phantomjs-prebuilt": "^2.1.7",
|
||||
"raw-loader": "^0.5.1",
|
||||
"rimraf": "^2.5.3",
|
||||
"rollup": "0.43.0",
|
||||
"rollup-plugin-commonjs": "^8.0.2",
|
||||
"rollup-plugin-node-resolve": "3.0.0",
|
||||
"rollup-plugin-sourcemaps": "0.4.2",
|
||||
"rollup-plugin-uglify": "2.0.1",
|
||||
"sass-loader": "^4.0.1",
|
||||
"script-loader": "^0.7.0",
|
||||
"semver": "5.3.0",
|
||||
"source-map-loader": "^0.1.5",
|
||||
"style-loader": "^0.13.1",
|
||||
"tslint": "^5.0.0",
|
||||
"tslint-loader": "^3.0.0",
|
||||
"typescript": "~2.2.1",
|
||||
"typings": "^0.8.1",
|
||||
"url-loader": "^0.5.7",
|
||||
"webpack": "^2.2.0",
|
||||
"webpack-dev-server": "^2.2.0",
|
||||
"webpack-merge": "^0.14.0",
|
||||
"webpack-node-externals": "^1.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/core": "^4.3.4"
|
||||
"repository": {
|
||||
"url": "https://github.com/lokenxo/ng2-fittext.git"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue