2019-06-18 10:17:27 -05:00
|
|
|
{
|
2019-07-23 19:17:41 -05:00
|
|
|
"author": "Grafana Labs",
|
|
|
|
"license": "Apache-2.0",
|
2019-06-18 10:17:27 -05:00
|
|
|
"name": "@grafana/data",
|
2023-04-04 08:41:50 -05:00
|
|
|
"version": "10.0.0-pre",
|
2019-06-18 10:17:27 -05:00
|
|
|
"description": "Grafana Data Library",
|
|
|
|
"keywords": [
|
|
|
|
"typescript"
|
|
|
|
],
|
2022-08-03 08:47:09 -05:00
|
|
|
"sideEffects": false,
|
2019-07-23 19:17:41 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-02-27 11:00:36 -06:00
|
|
|
"url": "http://github.com/grafana/grafana.git",
|
|
|
|
"directory": "packages/grafana-data"
|
2019-07-23 19:17:41 -05:00
|
|
|
},
|
2019-06-18 10:17:27 -05:00
|
|
|
"main": "src/index.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"types": "src/index.ts",
|
|
|
|
"publishConfig": {
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/esm/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
2022-09-28 10:04:55 -05:00
|
|
|
"./README.md",
|
|
|
|
"./CHANGELOG.md",
|
2022-08-03 08:47:09 -05:00
|
|
|
"LICENSE_APACHE2"
|
|
|
|
],
|
2019-06-18 10:17:27 -05:00
|
|
|
"scripts": {
|
2023-02-27 06:01:24 -06:00
|
|
|
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"clean": "rimraf ./dist ./compiled ./package.tgz",
|
2022-12-01 04:34:52 -06:00
|
|
|
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
|
|
|
|
"prepack": "cp package.json package.json.bak && node ../../scripts/prepare-packagejson.js",
|
|
|
|
"postpack": "mv package.json.bak package.json"
|
2019-06-18 10:17:27 -05:00
|
|
|
},
|
2020-02-19 07:40:41 -06:00
|
|
|
"dependencies": {
|
2023-03-08 03:38:06 -06:00
|
|
|
"@braintree/sanitize-url": "6.0.2",
|
2023-04-04 08:41:50 -05:00
|
|
|
"@grafana/schema": "10.0.0-pre",
|
2023-01-27 04:19:35 -06:00
|
|
|
"@types/d3-interpolate": "^3.0.0",
|
2023-04-15 01:08:28 -05:00
|
|
|
"@types/string-hash": "1.1.1",
|
2023-01-26 06:02:22 -06:00
|
|
|
"d3-interpolate": "3.0.1",
|
2022-11-02 07:05:32 -05:00
|
|
|
"date-fns": "2.29.3",
|
2023-03-16 12:13:34 -05:00
|
|
|
"dompurify": "^2.4.3",
|
2023-03-02 05:58:40 -06:00
|
|
|
"eventemitter3": "5.0.0",
|
2022-08-18 12:22:45 -05:00
|
|
|
"fast_array_intersect": "1.1.0",
|
2022-08-03 08:47:09 -05:00
|
|
|
"history": "4.10.1",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2023-03-08 03:38:06 -06:00
|
|
|
"marked": "4.2.12",
|
2022-07-22 05:00:54 -05:00
|
|
|
"moment": "2.29.4",
|
2023-03-08 03:38:06 -06:00
|
|
|
"moment-timezone": "0.5.41",
|
2023-02-17 20:14:13 -06:00
|
|
|
"ol": "7.2.2",
|
2022-03-23 09:56:44 -05:00
|
|
|
"papaparse": "5.3.2",
|
2023-01-02 04:27:48 -06:00
|
|
|
"react-use": "17.4.0",
|
2023-03-08 03:38:06 -06:00
|
|
|
"regenerator-runtime": "0.13.11",
|
2023-02-17 08:43:06 -06:00
|
|
|
"rxjs": "7.8.0",
|
2023-04-15 01:08:28 -05:00
|
|
|
"string-hash": "^1.1.3",
|
2023-02-19 06:15:40 -06:00
|
|
|
"tinycolor2": "1.6.0",
|
2023-02-20 03:43:05 -06:00
|
|
|
"tslib": "2.5.0",
|
2023-01-27 02:12:19 -06:00
|
|
|
"uplot": "1.6.24",
|
2023-03-16 12:13:34 -05:00
|
|
|
"xss": "^1.0.14"
|
2020-02-19 07:40:41 -06:00
|
|
|
},
|
2019-06-18 10:17:27 -05:00
|
|
|
"devDependencies": {
|
2022-02-10 07:37:39 -06:00
|
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
2023-02-27 06:01:24 -06:00
|
|
|
"@rollup/plugin-commonjs": "23.0.2",
|
|
|
|
"@rollup/plugin-json": "5.0.1",
|
2022-11-03 06:43:28 -05:00
|
|
|
"@rollup/plugin-node-resolve": "15.0.1",
|
2023-04-11 04:51:54 -05:00
|
|
|
"@testing-library/dom": "9.0.1",
|
2022-11-02 07:05:32 -05:00
|
|
|
"@testing-library/jest-dom": "5.16.5",
|
2023-04-11 04:51:54 -05:00
|
|
|
"@testing-library/react": "14.0.0",
|
2022-08-26 07:30:34 -05:00
|
|
|
"@testing-library/user-event": "14.4.3",
|
2023-03-16 12:13:34 -05:00
|
|
|
"@types/dompurify": "^2",
|
2022-03-24 11:01:43 -05:00
|
|
|
"@types/history": "4.7.11",
|
2022-11-24 08:00:41 -06:00
|
|
|
"@types/jest": "29.2.3",
|
2023-03-08 03:38:06 -06:00
|
|
|
"@types/jquery": "3.5.16",
|
|
|
|
"@types/lodash": "4.14.191",
|
|
|
|
"@types/marked": "4.0.8",
|
|
|
|
"@types/node": "18.14.6",
|
|
|
|
"@types/papaparse": "5.3.7",
|
2023-04-11 04:51:54 -05:00
|
|
|
"@types/react": "18.0.28",
|
|
|
|
"@types/react-dom": "18.0.11",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@types/sinon": "10.0.13",
|
|
|
|
"@types/testing-library__jest-dom": "5.14.5",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/tinycolor2": "1.4.3",
|
2023-01-23 05:15:05 -06:00
|
|
|
"esbuild": "0.16.17",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
|
|
|
"react-test-renderer": "18.2.0",
|
2023-03-10 07:00:25 -06:00
|
|
|
"rimraf": "4.4.0",
|
2023-02-27 06:01:24 -06:00
|
|
|
"rollup": "2.79.1",
|
2022-11-04 12:04:00 -05:00
|
|
|
"rollup-plugin-dts": "^5.0.0",
|
2022-12-16 03:48:59 -06:00
|
|
|
"rollup-plugin-esbuild": "5.0.0",
|
2023-02-27 06:01:24 -06:00
|
|
|
"rollup-plugin-node-externals": "^5.0.0",
|
2023-03-03 11:00:18 -06:00
|
|
|
"sinon": "15.0.1",
|
2022-12-27 08:30:52 -06:00
|
|
|
"typescript": "4.8.4"
|
2022-08-03 08:47:09 -05:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-04-11 04:51:54 -05:00
|
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
|
|
"react-dom": "^17.0.0 || ^18.0.0"
|
2019-10-31 04:48:05 -05:00
|
|
|
}
|
2019-06-18 10:17:27 -05:00
|
|
|
}
|