package.json 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@cloudbase/signature-nodejs",
  3. "version": "1.0.0-beta.0",
  4. "description": "cloudbase api signature for node.js",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "npx jest --coverage --verbose",
  8. "build": "tsc"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git@git.code.oa.com:QBase/cloudbase-signature-nodejs.git"
  13. },
  14. "author": "ulyssesliu",
  15. "lint-staged": {
  16. "*.ts": [
  17. "eslint --fix src/**/*",
  18. "git add"
  19. ]
  20. },
  21. "dependencies": {
  22. "@types/clone": "^0.1.30",
  23. "clone": "^2.1.2",
  24. "is-stream": "^2.0.0",
  25. "url": "^0.11.0"
  26. },
  27. "devDependencies": {
  28. "@types/jest": "^24.0.23",
  29. "@types/node": "10.12.10",
  30. "@typescript-eslint/eslint-plugin": "^2.10.0",
  31. "@typescript-eslint/parser": "^2.10.0",
  32. "eslint": "^6.7.2",
  33. "eslint-plugin-typescript": "^0.14.0",
  34. "husky": "^3.1.0",
  35. "jest": "^24.9.0",
  36. "lint-staged": "^9.5.0",
  37. "ts-jest": "^24.2.0",
  38. "typescript": "3.5.3",
  39. "typescript-eslint-parser": "^22.0.0"
  40. }
  41. }