package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "assert",
  3. "version": "2.1.0",
  4. "description": "The assert module from Node.js, for the browser.",
  5. "main": "build/assert.js",
  6. "files": [
  7. "build/assert.js",
  8. "build/internal"
  9. ],
  10. "license": "MIT",
  11. "homepage": "https://github.com/browserify/commonjs-assert",
  12. "repository": "browserify/commonjs-assert",
  13. "scripts": {
  14. "build": "babel assert.js test.js --out-dir build && babel internal --out-dir build/internal && babel test --out-dir build/test",
  15. "prepare": "npm run build",
  16. "dev": "babel assert.js test.js --watch --out-dir build & babel internal --watch --out-dir build/internal & babel test --watch --out-dir build/test",
  17. "test": "npm run build && npm run test:nobuild",
  18. "test:nobuild": "node build/test.js",
  19. "test:source": "node test.js",
  20. "test:browsers": "airtap build/test.js",
  21. "test:browsers:local": "npm run test:browsers -- --local"
  22. },
  23. "keywords": [
  24. "assert",
  25. "browser"
  26. ],
  27. "devDependencies": {
  28. "@babel/cli": "^7.22.15",
  29. "@babel/core": "^7.22.15",
  30. "@babel/preset-env": "^7.22.15",
  31. "airtap": "^2.0.4",
  32. "array-fill": "^1.2.0",
  33. "core-js": "^3.32.2",
  34. "cross-env": "^5.2.1",
  35. "object.entries": "^1.1.7",
  36. "object.getownpropertydescriptors": "^2.1.7",
  37. "tape": "^5.6.6"
  38. },
  39. "dependencies": {
  40. "call-bind": "^1.0.2",
  41. "is-nan": "^1.3.2",
  42. "object-is": "^1.1.5",
  43. "object.assign": "^4.1.4",
  44. "util": "^0.12.5"
  45. }
  46. }