This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
{
"name": "gemini-gui",
"version": "6.0.1",
"description": "GUI for gemini testing utility",
"main": "lib/index.js",
"bin": {
"gemini-gui": "./bin/gemini-gui"
},
"scripts": {
"build-client": "browserify lib/client --debug -p [minifyify --compressPath . --map /client.js.map.json --output ./lib/static/client.js.map.json] -t hbsfy -o ./lib/static/client.js",
"prepublish": "npm run build-client",
"test": "istanbul test _mocha -- test/",
"lint": "eslint ."
},
"author": "Sergey Tatarintsev <sevinf@yandex-team.ru> (https://github.com/SevInf)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.8.1",
"chalk": "^1.0.0",
"clipboard": "^1.5.12",
"commander": "^2.9.0",
"express": "^4.8.6",
"express-handlebars": "^2.0.0",
"fs-extra": "^0.30.0",
"handlebars": "^1.3.0",
"inherit": "^2.2.3",
"json-stringify-safe": "^5.0.1",
"large-download": "^1.0.0",
"lodash": "^3.10.1",
"opener": "^1.4.0",
"resolve": "^1.0.0",
"semver": "^3.0.1",
"shelljs": "^0.6.0",
"tar-fs": "^1.16.0",
"temp": "^0.8.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.3.1",
"eslint-config-gemini-testing": "^2.2.0",
"gemini": "^5.0.0",
"hbsfy": "^2.1.0",
"istanbul": "^0.3.2",
"minifyify": "^7.3.2",
"mocha": "^2.4.4",
"proxyquire": "^1.7.3",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"watchify": "^3.7.0"
},
"directories": {
"test": "test"
},
"keywords": [
"gemini",
"gui",
"screenshot",
"test",
"testing"
],
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/gemini-gui.git"
},
"bugs": {
"url": "https://github.com/gemini-testing/gemini-gui/issues"
},
"homepage": "https://github.com/gemini-testing/gemini-gui"
}