forked from gemini-testing/gemini
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.33 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "gemini",
"version": "2.1.1",
"description": "UI Screenshot testing utility",
"bin": {
"gemini": "./bin/gemini"
},
"main": "lib/public-api.js",
"dependencies": {
"aliasify": "^1.7.2",
"browserify": "^9.0.4",
"chalk": "^0.5.1",
"commander": "^2.8.1",
"css": "^2.1.0",
"debug": "^2.2.0",
"es6-weak-map": "^1.0.2",
"gemini-configparser": "^0.1.1",
"gemini-coverage": "~0.3.0",
"handlebars": "^2.0.0",
"inherit": "~2.2.1",
"install": "^0.1.8",
"js-yaml": "^3.2.5",
"lodash": "^3.6.0",
"looks-same": "^2.2.2",
"minimatch": "^2.0.1",
"png-img": "~1.1.0",
"polyfill-service": "~1.4.0",
"q": "^1.1.2",
"q-debug-mode": "0.0.1",
"q-io": "~1.11.0",
"qemitter": "^1.0.0",
"resolve": "^1.1.0",
"sizzle": "^2.2.0",
"source-map": "^0.2.0",
"temp": "~0.8.0",
"uglifyify": "^3.0.1",
"wd": "^0.3.4",
"worker-farm": "^1.3.1"
},
"bundleDependencies": [
"gemini-configparser",
"looks-same",
"gemini-coverage"
],
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.2",
"husky": "^0.10.2",
"istanbul": "^0.4.2",
"jscs": "^1.10.0",
"jshint": "^2.7.0",
"mocha": "^2.1.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.3",
"uglify-js": "^2.4.24"
},
"scripts": {
"test-unit": "istanbul test _mocha -- --recursive test/unit",
"prepublish": "uglifyjs ./lib/browser/client-scripts/gemini.calibrate.js -m > ./lib/browser/client-scripts/gemini.calibrate.min.js",
"test-func": "istanbul test _mocha test/functional",
"test-browser": "istanbul test _mocha test/browser",
"test": "istanbul test _mocha -- --recursive test/unit test/functional test/browser",
"lint": "jshint . && jscs .",
"precommit": "npm run lint",
"preversion": "npm run lint && npm test"
},
"author": "Sergey Tatarintsev <tatarincev.serg@yandex.ua> (https://github.com/SevInf)",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/gemini.git"
},
"keywords": [
"test",
"testing",
"screenshot",
"selenium",
"layout"
],
"bugs": {
"url": "https://github.com/gemini-testing/gemini/issues"
},
"homepage": "https://github.com/gemini-testing/gemini"
}