ng-jhipster
Version:
A Jhipster util library for Angular 2
89 lines (88 loc) • 3.13 kB
JSON
{
"name": "ng-jhipster",
"description": "A Jhipster util library for Angular 2",
"repository": {
"type": "git",
"url": "https://github.com/jhipster/ng-jhipster.git"
},
"keywords": [
"jhipster",
"angular",
"angular2"
],
"author": "Deepu KS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jhipster/generator-jhipster/issues"
},
"main": "bundles/ng-jhipster.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://jhipster.github.io",
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/router": "^5.0.0"
},
"dependencies": {
"@ngx-translate/core": "^8.0.0",
"@ngx-translate/http-loader": "^2.0.0"
},
"devDependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/router": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.2.7",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@types/hammerjs": "^2.0.34",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.22",
"awesome-typescript-loader": "^3.1.3",
"codelyzer": "^4.0.1",
"core-js": "^2.4.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"loader-utils": "^1.1.0",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"rxjs": "^5.5.5",
"shx": "^0.2.2",
"source-map-loader": "^0.2.1",
"ts-helpers": "^1.1.2",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "2.4.2",
"webpack": "^2.6.1",
"zone.js": "^0.8.11"
},
"version": "0.5.1",
"scripts": {
"cleanup": "rimraf src/*.d.ts src/**/*.d.ts src/*.js src/**/*.js aot/* tests/**/*.d.ts tests/**/*.js tests/*.d.ts tests/*.js",
"lint": "tslint --project tslint.json",
"lint:fix": "tslint --project tslint.json --fix",
"test": "npm run lint && karma start",
"test:watch": "karma start --singleRun=false --autoWatch=true",
"ngc": "ngc",
"ngc-aot": "ngc -p tsconfig-aot.json",
"build": "webpack && shx cp bundles/ng-jhipster.umd.js bundles/index.js",
"build:aot": "npm run cleanup && npm run ngc-aot && webpack && shx cp bundles/ng-jhipster.umd.js bundles/index.js",
"build:local": "npm run cleanup && npm run ngc && npm run build && npm test && npm pack",
"release": "npm run cleanup && npm run ngc && npm run build && npm test && git push && git push --tags && npm publish",
"release:patch": "npm version patch -a -m \"Update to %s\" && npm run release",
"release:minor": "npm version minor -a -m \"Update to %s\" && npm run release",
"release:major": "npm version major -a -m \"Update to %s\" && npm run release"
}
}