Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

43 рядки
1.5 KiB

  1. {
  2. "name": "regression",
  3. "description": "Javascript least squares data fitting methods",
  4. "contributors": [
  5. "Tom Alexander <me@tomalexander.co.nz>",
  6. "Misha Wolfson <misha@ginkgobioworks.com>"
  7. ],
  8. "version": "2.0.1",
  9. "license": "MIT",
  10. "main": "./dist/regression.js",
  11. "repository": "Tom-Alexander/regression-js",
  12. "keywords": [
  13. "regression",
  14. "data",
  15. "fiting",
  16. "modeling",
  17. "analysis"
  18. ],
  19. "scripts": {
  20. "clean": "rm -rf dist && mkdir dist",
  21. "lint": "./node_modules/.bin/eslint src/** tests/**",
  22. "test": "npm run lint && ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/mocha --compilers js:babel-core/register",
  23. "build": "npm run clean && npm run build-regression-js && npm run build-regression-min-js",
  24. "build-regression-js": "BABEL_ENV=production ./node_modules/.bin/babel src/regression.js --out-file dist/regression.js",
  25. "build-regression-min-js": " ./node_modules/.bin/uglifyjs dist/regression.js --output dist/regression.min.js"
  26. },
  27. "devDependencies": {
  28. "babel-cli": "^6.24.1",
  29. "babel-core": "^6.25.0",
  30. "babel-plugin-transform-es2015-modules-umd": "^6.24.1",
  31. "babel-preset-es2015": "^6.24.1",
  32. "babel-preset-stage-0": "^6.24.1",
  33. "chai": "^3.5.0",
  34. "eslint": "^3.19.0",
  35. "eslint-config-airbnb-base": "^11.2.0",
  36. "eslint-plugin-import": "^2.7.0",
  37. "mocha": "^3.2.0",
  38. "nyc": "^11.0.3",
  39. "uglify-js": "3"
  40. },
  41. "author": "Tom Alexander <me@tomalexander.co.nz>"
  42. }