mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Testing lerna on circle * Remove dependency on test task, fix yarn * yarn fix * Run lerna from local bin * Use packages cache, run lern via npx * Add packages:build * Install packages before release * Remove cache tmp * add lerna bootstrap * temporarily add tsignore * lerna add data package to ui * Remove @types/lodas resolution * Try any... * Typo fix * Add publishing packages * update lerna publish script * Reset git befgore publishing package * Correct lerna version * Packages version bump * Remove postpublish * Publish to npm * Set git creds before commit * Rename job and run it after frontend tests and build passes * Run next packages release on master but not when tagged with release * Minor copy * Update circle's config * Fix config
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "@grafana/runtime",
|
|
"version": "6.4.0-alpha.12",
|
|
"description": "Grafana Runtime Library",
|
|
"keywords": [
|
|
"grafana"
|
|
],
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"tslint": "tslint -c tslint.json --project tsconfig.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf ./dist ./compiled",
|
|
"bundle": "rollup -c rollup.config.ts",
|
|
"build": "grafana-toolkit package:build --scope=runtime"
|
|
},
|
|
"author": "Grafana Labs",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"systemjs": "0.20.19",
|
|
"systemjs-plugin-css": "0.1.37"
|
|
},
|
|
"devDependencies": {
|
|
"@types/systemjs": "^0.20.6",
|
|
"awesome-typescript-loader": "^5.2.1",
|
|
"lodash": "^4.17.10",
|
|
"pretty-format": "^24.5.0",
|
|
"rollup": "1.6.0",
|
|
"rollup-plugin-commonjs": "9.2.1",
|
|
"rollup-plugin-node-resolve": "4.0.1",
|
|
"rollup-plugin-sourcemaps": "0.4.2",
|
|
"rollup-plugin-terser": "4.0.4",
|
|
"rollup-plugin-typescript2": "0.19.3",
|
|
"rollup-plugin-visualizer": "0.9.2",
|
|
"typescript": "3.4.1"
|
|
}
|
|
}
|