forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/e2e",
"version": "10.2.0-pre",
"description": "Grafana End-to-End Test Library",
"keywords": [
"cli",
"grafana",
"e2e",
"typescript"
],
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-e2e"
},
"main": "src/index.ts",
"types": "src/index.ts",
"bin": {
"grafana-e2e": "bin/grafana-e2e.js"
},
"publishConfig": {
"main": "dist/index.js",
"types": "dist/index.d.ts",
"access": "public"
},
"files": [
"cypress",
"dist",
"cli.js",
"cypress.json",
"./README.md",
"./CHANGELOG.md",
"LICENSE_APACHE2"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
"bundle": "rollup -c rollup.config.ts",
"clean": "rimraf ./dist ./compiled ./package.tgz",
"open": "cypress open",
"start": "cypress run --browser=chrome",
"start-benchmark": "CYPRESS_NO_COMMAND_LOG=1 yarn start",
"test": "pushd test && node ../dist/bin/grafana-e2e.js run",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"prepack": "cp package.json package.json.bak && node ../../scripts/prepare-packagejson.js",
"postpack": "mv package.json.bak package.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.1.0",
"@types/chrome-remote-interface": "0.31.10",
"@types/lodash": "4.14.195",
"@types/node": "18.16.19",
"@types/uuid": "9.0.2",
"esbuild": "0.18.12",
"rollup": "2.79.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-node-externals": "^5.0.0",
"webpack": "5.88.1"
},
"dependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@cypress/webpack-preprocessor": "5.17.1",
"@grafana/e2e-selectors": "10.2.0-pre",
"@grafana/tsconfig": "^1.2.0-rc1",
"@mochajs/json-file-reporter": "^1.2.0",
"babel-loader": "9.1.3",
"blink-diff": "1.0.13",
"chrome-remote-interface": "0.32.2",
"commander": "8.3.0",
"cypress": "9.5.1",
"cypress-file-upload": "5.0.8",
"devtools-protocol": "0.0.1170333",
"execa": "5.1.1",
"lodash": "4.17.21",
"mocha": "10.2.0",
"resolve-bin": "1.0.1",
"rimraf": "5.0.1",
"tracelib": "1.0.1",
"ts-loader": "8.4.0",
"tslib": "2.6.0",
"typescript": "4.8.4",
"uuid": "9.0.0",
"yaml": "^2.0.0"
}
}