版博士V2.0程序
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.

пре 1 година
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "v8flags",
  3. "version": "4.0.0",
  4. "description": "Get available v8 and Node.js flags.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Tyler Kellen <tyler@sleekcode.net>",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  9. "Nicolò Ribaudo <nicolo.ribaudo@gmail.com>",
  10. "Selwyn <talk@selwyn.cc>",
  11. "Leo Zhang <leo@leozhang.me>"
  12. ],
  13. "repository": "gulpjs/v8flags",
  14. "license": "MIT",
  15. "engines": {
  16. "node": ">= 10.13.0"
  17. },
  18. "main": "index.js",
  19. "files": [
  20. "index.js",
  21. "config-path.js",
  22. "LICENSE"
  23. ],
  24. "scripts": {
  25. "lint": "eslint .",
  26. "pretest": "npm run lint",
  27. "test": "nyc mocha --async-only"
  28. },
  29. "dependencies": {},
  30. "devDependencies": {
  31. "async": "^3.2.2",
  32. "eslint": "^7.32.0",
  33. "eslint-config-gulp": "^5.0.1",
  34. "eslint-plugin-node": "^11.1.0",
  35. "expect": "^27.3.1",
  36. "mocha": "^8.4.0",
  37. "nyc": "^15.1.0",
  38. "proxyquire": "^2.1.3"
  39. },
  40. "nyc": {
  41. "reporter": [
  42. "lcov",
  43. "text-summary"
  44. ]
  45. },
  46. "prettier": {
  47. "singleQuote": true
  48. },
  49. "keywords": [
  50. "v8 flags",
  51. "harmony flags"
  52. ]
  53. }