{"maintainers":[{"name":"deployment","email":"yourname@ncinga.com"}],"x-nx-rebuilt":"2018-07-09T06:11:59.897+0000","dist-tags":{"package@0.0.1":"0.0.1","latest":"0.0.1"},"versions":{"0.0.1":{"name":"@ncinga-sp/nsp-counting-aql","version":"0.0.1","author":{"name":"nCinga platform team"},"homepage":"http://www.ncinga.com/","publishConfig":{"registry":"http://repository.ncinga.com/nexus/content/repositories/npm-internal/"},"scripts":{"clean":"ionic-app-scripts clean","build":"ionic-app-scripts build","lint":"ionic-app-scripts lint","lint-fix":"tslint --fix src/**/*.ts --force","ionic:build":"ionic-app-scripts build","ionic:serve":"ionic-app-scripts serve","test":"karma start ./test-config/karma.conf.js ","test-ci":"karma start ./test-config/karma.conf.js --single-run","test-coverage":"karma start ./test-config/karma.conf.js --coverage","e2e":"npm run e2e-update && npm run e2e-test","e2e-test":"protractor ./test-config/protractor.conf.js","html":"copyfiles -u 3  src/modules/candcmodule/**/*.html src/modules/candcmodule/**/**/*.html dist/","copySource":"copyfiles -u 3  src/modules/candcmodule/**/*.ts src/modules/candcmodule/**/**/*.ts dist/","ngc":"ngc -p tsconfig_module.json && npm run copySource && npm run copy-scss","copy-scss":"copyfiles -u 1  src/theme/*.scss dist/","e2e-update":"webdriver-manager update --standalone false --gecko false"},"dependencies":{"@angular/animations":"^5.2.5","@angular/common":"5.0.0","@angular/compiler":"5.0.0","@angular/compiler-cli":"5.0.0","@angular/core":"5.0.0","@angular/forms":"5.0.0","@angular/http":"5.0.0","@angular/platform-browser":"5.0.0","@angular/platform-browser-dynamic":"5.0.0","@ionic-native/camera":"4.3.2","@ionic-native/core":"4.3.2","@ionic-native/speech-recognition":"^4.5.3","@ionic-native/splash-screen":"4.3.2","@ionic-native/status-bar":"4.3.2","@ionic-native/text-to-speech":"4.5.3","@ionic/storage":"2.1.3","@ncinga-sp/nsp-app-core":">=1.0.0","@ngx-translate/core":"8.0.0","@ngx-translate/http-loader":"^2.0.0","@types/jquery":"^3.3.1","@types/lokijs":"^1.5.1","angular2-collapsible":"0.0.44","angular2-jwt":"^0.2.3","angular2-loki":"^1.0.0","cordova-android":"^6.3.0","cordova-ios":"~4.3.1","cordova-plugin-crosswalk-webview":"^2.3.0","cordova-plugin-device":"^1.1.4","cordova-plugin-ionic-webview":"^1.2.1","cordova-plugin-nsp-qrreader":"^1.0.1","cordova-plugin-speechrecognition":"^1.1.2","cordova-plugin-splashscreen":"^4.0.3","cordova-plugin-tts":"^0.2.3","cordova-plugin-whitelist":"^1.3.1","ionic-angular":"3.9.2","ionic-plugin-keyboard":"^2.2.1","ionicons":"3.0.0","jquery":"^3.3.1","lodash.takeright":"^4.1.1","lokijs":"^1.5.2","moment":"^2.13.0","ngx-logger":"^2.1.0","nsp-jquery-mapster":"~1.3.0","pre-commit":"^1.2.2","rxjs":"5.5.2","sw-toolbox":"3.6.0","zone.js":"^0.8.12"},"devDependencies":{"@ncinga-sp/nsp-reader":">=0.0.2","@angular-devkit/build-optimizer":"^0.5.4","@ionic/app-scripts":"^3.1.8","@types/jasmine":"^2.8.6","@types/jquery":"^3.3.1","@types/node":"^9.4.6","angular2-template-loader":"^0.6.2","codelyzer":"4.1.0","copyfiles":"^2.0.0","html-loader":"^0.5.5","istanbul-instrumenter-loader":"^3.0.0","jasmine":"^2.99.0","jasmine-core":"~2.8.0","jasmine-spec-reporter":"^4.2.1","jquery-imagemapster":"1.2.10","karma":"^2.0.0","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.3","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^2.0.9","lodash":"4.17.4","null-loader":"^0.1.1","protractor":"^5.3.0","ts-loader":"^3.5.0","ts-node":"^4.1.0","tslint":"5.0.0","typescript":"2.6.2","webpack":"^3.8.1","ws":"3.3.2"},"config":{"ionic_webpack":"./scripts/webpack.config.js"},"pre-commit":["lint-fix","lint","ngc"],"description":"An Ionic Module for the spark platform","cordova":{"platforms":["android","ios"],"plugins":{"cordova-plugin-crosswalk-webview":{"XWALK_VERSION":"23+","XWALK_LITEVERSION":"xwalk_core_library_canary:17+","XWALK_COMMANDLINE":"--disable-pull-to-refresh-effect","XWALK_MODE":"embedded","XWALK_MULTIPLEAPK":"true"},"cordova-plugin-device":{},"cordova-plugin-ionic-webview":{},"cordova-plugin-speechrecognition":{},"cordova-plugin-splashscreen":{},"cordova-plugin-tts":{},"cordova-plugin-whitelist":{},"ionic-plugin-keyboard":{},"cordova-plugin-nsp-qrreader":{}}},"readme":"\n##### About module\nSample description about this module\n\n####Change followings\ntsconfig_module -> include[] into your module\n#####Write a new mock service\n\nEx : mock service url is “localhost:8100/auth_services/styles” and its method is GET\n\nFirst we have to make a js file called endpoint name “style” when its not existing in “mockBackend/server/api” direcory.\n\nAfter u want to replace below code in to your new js file\n````\n'use strict';\nconst SetupEndpoint = require('./setup/index');\nmodule.exports = SetupEndpoint({\n    name: 'style',\n    urls: [\n        {\n            params: '',\n            requests: [{\n                method: 'POST',\n                response:           \t\t\t\t\t\t\t\t \t\t\t{\"token\":\"jO1rZJinfTgFvuokW4Her3aSfP6gAU_R-qlzz2Cc\"}\n                /* can use response as a json file in another dir.. */\n                /* response: '/response-files/actualRest/login.json' */\n            }]\n        }]\n});\n````\n\ngive your endpoint for “name” belong to above URL ‘style’ is setup as “name”.if there is a request parameters it’s add to  “ params”\nAt the end you want to write response for your requests response can be write in above code or you can import in another place.\nif you use import file method first you want to make a json file in mockBackend/response-files/actualRest directory with your own name and import /response-files/actualRest/fileName.json.\nAfter run ionic app using “ionic serve” and to start mock server first going to “ mockBackend” and run “npm run start:dev”.\n\n######Now you can use application with mock services\n(“_”) ...Cheers… (“_”)\n\n\nnCinga counting app\n\n## Technologies\n\n* Ionic 3.8.1\n* Angular 5\n* Node 7.10.1\n* npm 5.6.0\n\n###### Check package.json :) to see other environment dependencies","readmeFilename":"README.md","_id":"@ncinga-sp/nsp-counting-aql@0.0.1","_shasum":"eebc769892ecfee7d1f2ab4d888021a96a077592","_resolved":"file:ncinga-sp-nsp-counting-aql-0.0.1.tgz","_from":"ncinga-sp-nsp-counting-aql-0.0.1.tgz","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"deployment","email":"yourname@ncinga.com"},"maintainers":[{"name":"deployment","email":"yourname@ncinga.com"}],"dist":{"shasum":"eebc769892ecfee7d1f2ab4d888021a96a077592","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@ncinga-sp/nsp-counting-aql/-/nsp-counting-aql-0.0.1.tgz"}}},"name":"@ncinga-sp/nsp-counting-aql","description":"An Ionic Module for the spark platform","readme":"\n##### About module\nSample description about this module\n\n####Change followings\ntsconfig_module -> include[] into your module\n#####Write a new mock service\n\nEx : mock service url is “localhost:8100/auth_services/styles” and its method is GET\n\nFirst we have to make a js file called endpoint name “style” when its not existing in “mockBackend/server/api” direcory.\n\nAfter u want to replace below code in to your new js file\n````\n'use strict';\nconst SetupEndpoint = require('./setup/index');\nmodule.exports = SetupEndpoint({\n    name: 'style',\n    urls: [\n        {\n            params: '',\n            requests: [{\n                method: 'POST',\n                response:           \t\t\t\t\t\t\t\t \t\t\t{\"token\":\"jO1rZJinfTgFvuokW4Her3aSfP6gAU_R-qlzz2Cc\"}\n                /* can use response as a json file in another dir.. */\n                /* response: '/response-files/actualRest/login.json' */\n            }]\n        }]\n});\n````\n\ngive your endpoint for “name” belong to above URL ‘style’ is setup as “name”.if there is a request parameters it’s add to  “ params”\nAt the end you want to write response for your requests response can be write in above code or you can import in another place.\nif you use import file method first you want to make a json file in mockBackend/response-files/actualRest directory with your own name and import /response-files/actualRest/fileName.json.\nAfter run ionic app using “ionic serve” and to start mock server first going to “ mockBackend” and run “npm run start:dev”.\n\n######Now you can use application with mock services\n(“_”) ...Cheers… (“_”)\n\n\nnCinga counting app\n\n## Technologies\n\n* Ionic 3.8.1\n* Angular 5\n* Node 7.10.1\n* npm 5.6.0\n\n###### Check package.json :) to see other environment dependencies","time":{"created":"2018-07-04T06:41:11.862Z","modified":"2018-07-09T06:11:59.898Z","0.0.1":"2018-07-04T06:41:11.862Z"},"homepage":"http://www.ncinga.com/"}