package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "author": "Grafana Labs",
  3. "license": "Apache-2.0",
  4. "name": "@grafana/data",
  5. "version": "6.4.0-alpha.44",
  6. "description": "Grafana Data Library",
  7. "keywords": [
  8. "typescript"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "http://github.com/grafana/grafana.git"
  13. },
  14. "main": "src/index.ts",
  15. "scripts": {
  16. "tslint": "tslint -c tslint.json --project tsconfig.json",
  17. "typecheck": "tsc --noEmit",
  18. "clean": "rimraf ./dist ./compiled",
  19. "bundle": "rollup -c rollup.config.ts",
  20. "build": "grafana-toolkit package:build --scope=data"
  21. },
  22. "devDependencies": {
  23. "@types/jest": "23.3.14",
  24. "@types/jquery": "1.10.35",
  25. "@types/lodash": "4.14.123",
  26. "@types/node": "10.14.1",
  27. "@types/papaparse": "4.5.9",
  28. "@types/pretty-format": "20.0.1",
  29. "@types/react": "16.8.16",
  30. "@types/sinon": "^7.0.11",
  31. "awesome-typescript-loader": "^5.2.1",
  32. "lodash": "^4.17.10",
  33. "pretty-format": "^24.5.0",
  34. "rollup": "1.6.0",
  35. "rollup-plugin-commonjs": "9.2.1",
  36. "rollup-plugin-node-resolve": "4.0.1",
  37. "rollup-plugin-sourcemaps": "0.4.2",
  38. "rollup-plugin-terser": "4.0.4",
  39. "rollup-plugin-typescript2": "0.19.3",
  40. "rollup-plugin-visualizer": "0.9.2",
  41. "sinon": "1.17.6",
  42. "typescript": "3.5.3"
  43. }
  44. }