You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "assert",
  3. "version": "2.0.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.4.4",
  29. "@babel/core": "^7.4.4",
  30. "@babel/preset-env": "^7.4.4",
  31. "airtap": "^2.0.2",
  32. "array-fill": "^1.2.0",
  33. "core-js": "^3.0.1",
  34. "cross-env": "^5.2.0",
  35. "object.entries": "^1.1.0",
  36. "object.getownpropertydescriptors": "^2.0.3",
  37. "tape": "^4.10.1"
  38. },
  39. "dependencies": {
  40. "es6-object-assign": "^1.1.0",
  41. "is-nan": "^1.2.1",
  42. "object-is": "^1.0.1",
  43. "util": "^0.12.0"
  44. }
  45. }