package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@persagy-web/draw",
  3. "version": "2.2.17",
  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. "test-c": "jest --coverage",
  13. "typedoc": "typedoc --hideGenerator src ../persagy-web-base/src"
  14. },
  15. "keywords": [
  16. "draw"
  17. ],
  18. "author": "庞利祥 <sybotan@126.com>",
  19. "license": "ISC",
  20. "publishConfig": {
  21. "registry": "http://dev.dp.sagacloud.cn:8082/repository/npm-hosted/"
  22. },
  23. "devDependencies": {
  24. "@typescript-eslint/eslint-plugin": "^1.12.0",
  25. "@typescript-eslint/parser": "^1.12.0",
  26. "eslint": "^6.0.1",
  27. "eslint-config-prettier": "^6.0.0",
  28. "eslint-plugin-prettier": "^3.1.0",
  29. "node-ssh": "^6.0.0",
  30. "prettier": "^1.18.2",
  31. "@types/jest": "^24.0.15",
  32. "jest": "^26.6.3",
  33. "ts-jest": "^26.5.0",
  34. "jest-canvas-mock": "^2.1.0",
  35. "typescript": "^3.5.3"
  36. },
  37. "dependencies": {
  38. "@persagy-web/base": "2.2.2"
  39. },
  40. "jest": {
  41. "setupFiles": [
  42. "./__setups__/canvas.js",
  43. "jest-canvas-mock"
  44. ]
  45. }
  46. }