This repository was archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 KB
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
{
"name": "gemini-gui",
"version": "0.2.3",
"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 --require ./test/index.js test",
"lint": "jshint . && jscs ."
},
"author": "Sergey Tatarintsev <sevinf@yandex-team.ru> (https://github.com/SevInf)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.8.1",
"chalk": "^1.0.0",
"coa": "^0.4.1",
"express": "^4.8.6",
"express-handlebars": "^1.0.3",
"handlebars": "^1.3.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^3.10.0",
"opener": "^1.4.0",
"q": "^1.0.1",
"q-io": "^1.11.4",
"resolve": "^1.0.0",
"semver": "^3.0.1",
"temp": "^0.8.1"
},
"devDependencies": {
"browserify": "^5.11.1",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"gemini": "^0.6.4",
"hbsfy": "^2.1.0",
"istanbul": "^0.3.2",
"jscs": "^1.6.2",
"jshint": "^2.5.6",
"minifyify": "^4.2.0",
"mocha": "^1.21.4",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0",
"watchify": "^1.0.2"
},
"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"
}