package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@saga-web/draw",
  3. "version": "2.1.113",
  4. "description": "上格云绘制引擎。",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.js",
  7. "scripts": {
  8. "build": "tsc",
  9. "publish": "npm publish",
  10. "lint": "eslint src/**/*.{js,ts,tsx}",
  11. "test": "jest",
  12. "typedoc": "typedoc --hideGenerator src ../saga-web-base/src"
  13. },
  14. "keywords": [
  15. "draw"
  16. ],
  17. "author": "庞利祥 (sybotan@126.com)",
  18. "license": "ISC",
  19. "publishConfig": {
  20. "registry": "http://dev.dp.sagacloud.cn:8082/repository/npm-hosted/"
  21. },
  22. "devDependencies": {
  23. "@typescript-eslint/eslint-plugin": "^1.12.0",
  24. "@typescript-eslint/parser": "^1.12.0",
  25. "eslint": "^6.0.1",
  26. "eslint-config-prettier": "^6.0.0",
  27. "eslint-plugin-prettier": "^3.1.0",
  28. "node-ssh": "^6.0.0",
  29. "prettier": "^1.18.2",
  30. "@types/jest": "^24.0.15",
  31. "ts-jest": "^24.0.2",
  32. "jest-canvas-mock": "^2.1.0",
  33. "typescript": "^3.9.7"
  34. },
  35. "dependencies": {
  36. "@saga-web/base": "2.1.27"
  37. },
  38. "jest": {
  39. "setupFiles": [
  40. "./__setups__/canvas.js",
  41. "jest-canvas-mock"
  42. ]
  43. }
  44. }