package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "bidi-js",
  3. "version": "1.0.3",
  4. "description": "A JavaScript implementation of the Unicode Bidirectional Algorithm",
  5. "main": "dist/bidi.js",
  6. "module": "dist/bidi.mjs",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/lojjic/bidi-js.git"
  10. },
  11. "scripts": {
  12. "build": "rollup -c rollup.config.js",
  13. "test": "npx babel-node --plugins @babel/plugin-transform-modules-commonjs test/runTestsOnSrc.js",
  14. "test-build": "node test/runTestsOnBuild.js"
  15. },
  16. "author": "Jason Johnston",
  17. "license": "MIT",
  18. "devDependencies": {
  19. "@babel/cli": "^7.13.16",
  20. "@babel/core": "^7.14.0",
  21. "@babel/node": "^7.13.13",
  22. "@babel/plugin-transform-modules-commonjs": "^7.13.8",
  23. "@babel/preset-env": "^7.14.0",
  24. "@rollup/plugin-babel": "^5.3.0",
  25. "@rollup/plugin-buble": "^0.21.3",
  26. "node-fetch": "^2.6.1",
  27. "rollup": "^2.45.1",
  28. "rollup-plugin-terser": "^7.0.2"
  29. },
  30. "files": [
  31. "/dist",
  32. "/src",
  33. "/LICENSE.txt",
  34. "/README.md"
  35. ],
  36. "dependencies": {
  37. "require-from-string": "^2.0.2"
  38. }
  39. }