package.json 985 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@wry/equality",
  3. "version": "0.1.11",
  4. "author": "Ben Newman <ben@eloper.dev>",
  5. "description": "Structural equality checking for JavaScript values",
  6. "license": "MIT",
  7. "main": "lib/equality.js",
  8. "module": "lib/equality.esm.js",
  9. "types": "lib/equality.d.ts",
  10. "keywords": [],
  11. "homepage": "https://github.com/benjamn/wryware",
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/benjamn/wryware.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/benjamn/wryware/issues"
  18. },
  19. "scripts": {
  20. "clean": "../../node_modules/.bin/rimraf lib",
  21. "tsc": "../../node_modules/.bin/tsc",
  22. "rollup": "../../node_modules/.bin/rollup -c",
  23. "build": "npm run clean && npm run tsc && npm run rollup",
  24. "mocha": "../../scripts/test.sh lib/tests.js",
  25. "prepublish": "npm run build",
  26. "test": "npm run build && npm run mocha"
  27. },
  28. "dependencies": {
  29. "tslib": "^1.9.3"
  30. },
  31. "gitHead": "925e08dec81c57f9557e61f9b5153f349c1a5896"
  32. }