package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "setprototypeof",
  3. "version": "1.1.1",
  4. "description": "A small polyfill for Object.setprototypeof",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "scripts": {
  8. "test": "standard && mocha",
  9. "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11",
  10. "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t",
  11. "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion",
  12. "node4": "NODE_VER=4 npm run testversion",
  13. "node6": "NODE_VER=6 npm run testversion",
  14. "node9": "NODE_VER=9 npm run testversion",
  15. "node11": "NODE_VER=11 npm run testversion"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/wesleytodd/setprototypeof.git"
  20. },
  21. "keywords": [
  22. "polyfill",
  23. "object",
  24. "setprototypeof"
  25. ],
  26. "author": "Wes Todd",
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/wesleytodd/setprototypeof/issues"
  30. },
  31. "homepage": "https://github.com/wesleytodd/setprototypeof",
  32. "devDependencies": {
  33. "mocha": "^5.2.0",
  34. "standard": "^12.0.1"
  35. }
  36. }