package.json 811 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "wkt-parser",
  3. "version": "1.3.3",
  4. "description": "wkt-parser ===",
  5. "main": "wkt.build.js",
  6. "module": "index.js",
  7. "scripts": {
  8. "test": "node -r esm test.js",
  9. "build": "rollup -c",
  10. "pretest": "npm run build"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/proj4js/wkt-parser.git"
  15. },
  16. "browserify": {
  17. "transform": [
  18. [
  19. "babelify",
  20. {
  21. "presets": [
  22. "es2015"
  23. ]
  24. }
  25. ]
  26. ]
  27. },
  28. "author": "",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/proj4js/wkt-parser/issues"
  32. },
  33. "homepage": "https://github.com/proj4js/wkt-parser#readme",
  34. "devDependencies": {
  35. "esm": "^3.2.25",
  36. "js-struct-compare": "^1.1.0",
  37. "rollup": "^0.41.4",
  38. "tape": "^4.6.3"
  39. }
  40. }