Açıklama Yok

package.json 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "satellizer",
  3. "description": "Token-based AngularJS Authentication",
  4. "version": "0.15.4",
  5. "main": "dist/satellizer.js",
  6. "scripts": {
  7. "start": "supervisor ./examples/server/node/server.js",
  8. "test": "karma start",
  9. "build": "npm run clean && tsc && rollup -c && uglifyjs dist/satellizer.js -o dist/satellizer.min.js && npm run copy",
  10. "clean": "rimraf build dist",
  11. "copy": "cp dist/satellizer.js examples/client/vendor && cp -R examples/client/ examples/server/php/public/",
  12. "bump": "npm version patch",
  13. "postversion": "npm test && npm run build && git add -A dist && git commit -m 'Release'"
  14. },
  15. "author": {
  16. "name": "Sahat Yalkabov",
  17. "email": "sahat@me.com",
  18. "url": "http://sahatyalkabov.com"
  19. },
  20. "homepage": "https://github.com/sahat/satellizer",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/sahat/satellizer.git"
  24. },
  25. "bugs": {
  26. "url": "https://github.com/sahat/satellizer/issues"
  27. },
  28. "license": "MIT",
  29. "devDependencies": {
  30. "angular-mocks": "^1.5.7",
  31. "babel-core": "^6.9.1",
  32. "babel-eslint": "^6.0.4",
  33. "babel-loader": "^6.2.4",
  34. "babel-polyfill": "^6.9.1",
  35. "babel-preset-es2015": "^6.9.0",
  36. "babel-preset-es2015-rollup": "^1.1.1",
  37. "jasmine-core": "^2.4.1",
  38. "karma": "^0.13.22",
  39. "karma-coverage": "^1.0.0",
  40. "karma-jasmine": "^1.0.2",
  41. "karma-phantomjs-launcher": "^1.0.0",
  42. "karma-source-map-support": "^1.1.0",
  43. "karma-sourcemap-loader": "^0.3.7",
  44. "karma-typescript-preprocessor": "^0.2.1",
  45. "karma-webpack": "^1.7.0",
  46. "npm-run-all": "^2.3.0",
  47. "phantomjs-prebuilt": "^2.1.7",
  48. "rollup": "^0.34.1",
  49. "rollup-plugin-babel": "^2.4.0",
  50. "rollup-plugin-node-resolve": "^1.7.1",
  51. "rollup-plugin-typescript": "^0.7.6",
  52. "rollup-plugin-uglify": "^1.0.1",
  53. "ts-loader": "^0.8.2",
  54. "ts-node": "^0.9.3",
  55. "tslint": "~3.13.0",
  56. "tslint-loader": "^2.1.4",
  57. "typescript": "^1.8.10",
  58. "uglify-js": "^2.7.0",
  59. "webpack": "^1.13.1"
  60. },
  61. "tags": [
  62. "authentication",
  63. "login",
  64. "token",
  65. "jwt",
  66. "angularjs",
  67. "angular",
  68. "auth",
  69. "facebook",
  70. "google",
  71. "linkedin",
  72. "twitter",
  73. "foursquare",
  74. "github",
  75. "yahoo",
  76. "oauth",
  77. "oauth 1.0",
  78. "oauth 2.0",
  79. "oauth2",
  80. "oauth1",
  81. "sign-in",
  82. "social",
  83. "twitch"
  84. ]
  85. }