package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@tootallnate/once",
  3. "version": "1.1.2",
  4. "description": "Creates a Promise that waits for a single event",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "prebuild": "rimraf dist",
  12. "build": "tsc",
  13. "test": "mocha --reporter spec",
  14. "test-lint": "eslint src --ext .js,.ts",
  15. "prepublishOnly": "npm run build"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/TooTallNate/once.git"
  20. },
  21. "keywords": [],
  22. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/TooTallNate/once/issues"
  26. },
  27. "devDependencies": {
  28. "@types/node": "^12.12.11",
  29. "@typescript-eslint/eslint-plugin": "1.6.0",
  30. "@typescript-eslint/parser": "1.1.0",
  31. "eslint": "5.16.0",
  32. "eslint-config-airbnb": "17.1.0",
  33. "eslint-config-prettier": "4.1.0",
  34. "eslint-import-resolver-typescript": "1.1.1",
  35. "eslint-plugin-import": "2.16.0",
  36. "eslint-plugin-jsx-a11y": "6.2.1",
  37. "eslint-plugin-react": "7.12.4",
  38. "mocha": "^6.2.2",
  39. "rimraf": "^3.0.0",
  40. "typescript": "^3.7.3"
  41. },
  42. "engines": {
  43. "node": ">= 6"
  44. }
  45. }