package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@antv/g-math",
  3. "version": "0.1.9",
  4. "description": "geometry math",
  5. "main": "lib/index.js",
  6. "module": "esm/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "src",
  10. "package.json",
  11. "esm",
  12. "lib",
  13. "LICENSE",
  14. "README.md"
  15. ],
  16. "scripts": {
  17. "build": "npm run clean && run-p build:*",
  18. "build:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
  19. "build:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
  20. "clean": "rm -rf esm lib",
  21. "watch:cjs": "tsc-watch -p tsconfig.json --target ES5 --module commonjs --outDir lib --compiler typescript/bin/tsc",
  22. "coverage": "npm run coverage-generator && npm run coverage-viewer",
  23. "coverage-generator": "torch --coverage --compile --source-pattern src/*.js,src/**/*.js --opts tests/mocha.opts",
  24. "coverage-viewer": "torch-coverage",
  25. "test": "torch --renderer --compile --opts tests/mocha.opts",
  26. "test-live": "torch --compile --interactive --opts tests/mocha.opts",
  27. "tsc": "tsc --noEmit",
  28. "typecheck": "tsc --noEmit"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/antvis/util.git"
  33. },
  34. "keywords": [
  35. "util",
  36. "antv",
  37. "g"
  38. ],
  39. "publishConfig": {
  40. "access": "public"
  41. },
  42. "author": "https://github.com/orgs/antvis/people",
  43. "license": "ISC",
  44. "bugs": {
  45. "url": "https://github.com/antvis/util/issues"
  46. },
  47. "devDependencies": {
  48. "@antv/torch": "^1.0.0",
  49. "electron": "11.2.3",
  50. "less": "^4.1.1",
  51. "npm-run-all": "^4.1.5",
  52. "tsc-watch": "^4.0.0"
  53. },
  54. "homepage": "https://github.com/antvis/util#readme",
  55. "dependencies": {
  56. "@antv/util": "~2.0.0",
  57. "gl-matrix": "^3.0.0"
  58. },
  59. "gitHead": "2d3bf5b25fb8412c05d53f04fc0cd8414d1fd7cc"
  60. }