web 3d图形渲染器
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.

47 lines
1.1 KiB

  1. {
  2. "name": "eslint-import-resolver-node",
  3. "version": "0.3.4",
  4. "description": "Node default behavior import resolution plugin for eslint-plugin-import.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "prepublishOnly": "cp ../../{LICENSE,.npmrc} ./",
  11. "tests-only": "nyc mocha",
  12. "test": "npm run tests-only",
  13. "coveralls": "nyc report --reporter lcovonly && cd ../.. && coveralls < ./resolvers/node/coverage/lcov.info"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/benmosher/eslint-plugin-import"
  18. },
  19. "keywords": [
  20. "eslint",
  21. "eslintplugin",
  22. "esnext",
  23. "modules",
  24. "eslint-plugin-import"
  25. ],
  26. "author": "Ben Mosher (me@benmosher.com)",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/benmosher/eslint-plugin-import/issues"
  30. },
  31. "homepage": "https://github.com/benmosher/eslint-plugin-import",
  32. "dependencies": {
  33. "debug": "^2.6.9",
  34. "resolve": "^1.13.1"
  35. },
  36. "devDependencies": {
  37. "chai": "^3.5.0",
  38. "coveralls": "^3.0.0",
  39. "mocha": "^3.5.3",
  40. "nyc": "^11.7.1"
  41. },
  42. "nyc": {
  43. "exclude": [
  44. "test/"
  45. ]
  46. }
  47. }