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.
 
 
 

58 lines
2.2 KiB

  1. {
  2. "name": "@yr/monotone-cubic-spline",
  3. "description": "Convert a series of points to a monotone cubic spline",
  4. "version": "1.0.3",
  5. "author": "Alexander Pope <alexander.pope@nrk.no>",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "babel-plugin-syntax-trailing-function-commas": "6.22.0",
  9. "babel-plugin-transform-async-generator-functions": "6.24.1",
  10. "babel-plugin-transform-async-to-generator": "6.24.1",
  11. "babel-plugin-transform-es2015-arrow-functions": "6.22.0",
  12. "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
  13. "babel-plugin-transform-es2015-block-scoping": "6.24.1",
  14. "babel-plugin-transform-es2015-classes": "6.24.1",
  15. "babel-plugin-transform-es2015-computed-properties": "6.24.1",
  16. "babel-plugin-transform-es2015-destructuring": "6.23.0",
  17. "babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
  18. "babel-plugin-transform-es2015-for-of": "6.23.0",
  19. "babel-plugin-transform-es2015-function-name": "6.24.1",
  20. "babel-plugin-transform-es2015-literals": "6.22.0",
  21. "babel-plugin-transform-es2015-object-super": "6.24.1",
  22. "babel-plugin-transform-es2015-parameters": "6.24.1",
  23. "babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
  24. "babel-plugin-transform-es2015-spread": "6.22.0",
  25. "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
  26. "babel-plugin-transform-es2015-template-literals": "6.22.0",
  27. "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
  28. "babel-plugin-transform-es5-property-mutators": "6.24.1",
  29. "babel-plugin-transform-exponentiation-operator": "6.24.1",
  30. "babel-plugin-transform-object-rest-spread": "6.23.0",
  31. "buddy": "6.x.x",
  32. "expect.js": "*",
  33. "mocha": "*"
  34. },
  35. "main": "src/index.js",
  36. "repository": "https://github.com/YR/monotone-cubic-spline.git",
  37. "license": "MIT",
  38. "scripts": {
  39. "prepublish": "buddy build",
  40. "test": "NODE_ENV=test mocha test/lib-test.js --reporter spec"
  41. },
  42. "browser": "index.js",
  43. "buddy": {
  44. "build": [
  45. {
  46. "input": "src/",
  47. "output": ".",
  48. "bundle": false,
  49. "version": "es5"
  50. },
  51. {
  52. "input": "src/index.js",
  53. "output": "test/lib.js"
  54. }
  55. ]
  56. }
  57. }