-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
86 lines (86 loc) · 2.72 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
{
"name": "@genymotion/device-web-player",
"version": "4.1.5",
"description": "Genymotion Virtual Device Web Renderer",
"main": "dist/js/device-renderer.min.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest --config tests/config.js",
"lint": "eslint src tests gulp",
"checkstyle": "eslint -f checkstyle -o ./tests/reports/lint/report.xml src tests gulp",
"validate": "yarn lint && yarn checkstyle",
"build:dev": "gulp build",
"build": "gulp build --production",
"start": "gulp serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Genymobile/genymotion-device-web-player.git"
},
"author": "Genymotion team (https://www.genymotion.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Genymobile/genymotion-device-web-player/issues"
},
"homepage": "https://github.com/Genymobile/genymotion-device-web-player#readme",
"dependencies": {
"gulp-header": "^2.0.9",
"gulp-replace": "^1.1.4",
"lodash": "^4.17.21",
"loglevel": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.27.10",
"browserify": "^17.0.0",
"browserify-transform-tools": "^1.7.0",
"del": "^6.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^5.1.3",
"estraverse-fb": "^1.3.2",
"grasp": "^0.6.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-css-base64": "^2.0.0",
"gulp-html-to-js": "0.0.7",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-inject": "^5.0.5",
"gulp-inline-fonts": "^1.2.1",
"gulp-sass": "^5.1.0",
"gulp-streamify": "^1.0.2",
"gulp-tap": "^2.0.0",
"gulp-uglify-es": "^2.0.0",
"gulp-using": "^0.1.1",
"gulp-util": "^3.0.8",
"jest": "^26.6.3",
"jest-junit": "^12.3.0",
"merge2": "^1.4.1",
"prettier": "^3.3.2",
"sass": "^1.53.0",
"through2": "^4.0.2",
"typescript": "^5.5.4",
"vinyl": "^2.2.1",
"vinyl-source-stream": "^2.0.0"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "tests/reports",
"outputName": "junit.xml"
}
}