project.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "version": "2.10.3",
  3. "title": "Jint",
  4. "description": "Javascript interpreter for .NET which provides full ECMA 5.1 compliance.",
  5. "language": "en-US",
  6. "copyright": "Sebastien Ros",
  7. "authors": [ "Sebastien Ros" ],
  8. "packOptions": {
  9. "projectUrl": "https://github.com/sebastienros/jint",
  10. "tags": [ "javascript, interpreter" ],
  11. "licenseUrl": "https://raw.githubusercontent.com/sebastienros/jint/master/LICENSE.txt",
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/sebastienros/jint"
  15. },
  16. "releaseNotes": "Fix package dependencies for .NET 4.5."
  17. },
  18. "buildOptions": {
  19. "keyFile": "Jint.snk"
  20. },
  21. "frameworks": {
  22. "net45": {
  23. "frameworkAssemblies": {
  24. "System.Diagnostics.Contracts": "4.0.0.0"
  25. }
  26. },
  27. ".NETPortable,Version=v4.0,Profile=Profile328": {
  28. "buildOptions": {
  29. "define": [
  30. "PORTABLE"
  31. ]
  32. },
  33. "frameworkAssemblies": {
  34. "mscorlib": "",
  35. "System": "",
  36. "System.Core": ""
  37. }
  38. },
  39. "netstandard1.3": {
  40. "dependencies": {
  41. "NETStandard.Library": "1.6.0",
  42. "System.Diagnostics.Contracts": "4.0.1",
  43. "System.Dynamic.Runtime": "4.0.11",
  44. "System.Reflection.TypeExtensions": "4.1.0"
  45. }
  46. }
  47. }
  48. }