forked from gemini-testing/gemini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.23 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gemini",
"version": "4.19.3",
"description": "UI Screenshot testing utility",
"engines": {
"node": ">= 4.0.0"
},
"bin": {
"gemini": "./bin/gemini"
},
"main": "api.js",
"dependencies": {
"aliasify": "^1.7.2",
"bluebird": "^3.4.6",
"bluebird-q": "^2.1.1",
"browserify": "^13.0.0",
"chalk": "^1.1.3",
"clipboard": "^1.5.15",
"commander": "^2.8.1",
"css": "^2.1.0",
"debug": "^2.2.0",
"fs-extra": "^0.30.0",
"gemini-configparser": "^0.1.1",
"gemini-core": "^1.0.0",
"gemini-coverage": "^1.0.0",
"graceful-fs": "^4.1.11",
"handlebars": "^4.0.5",
"inherit": "~2.2.1",
"js-yaml": "^3.2.5",
"lodash": "^4.15.0",
"looks-same": "^3.0.0",
"micromatch": "^2.3.11",
"node-fetch": "^1.6.3",
"plugins-loader": "^1.0.1",
"png-img": "^2.1.0",
"q-promise-utils": "^1.1.0",
"qemitter": "^1.0.0",
"resolve": "^1.1.0",
"sizzle": "^2.2.0",
"source-map": "^0.5.3",
"striptags": "2.1.1",
"temp": "~0.8.0",
"uglify-js": "^2.7.3",
"uglifyify": "^3.0.1",
"wd": "^0.4.0",
"worker-farm": "^1.3.1"
},
"devDependencies": {
"app-module-path": "^1.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"conventional-changelog-lint": "^1.0.1",
"coveralls": "^2.11.2",
"eslint": "^3.1.1",
"eslint-config-gemini-testing": "^2.0.0",
"gitbook-cli": "^2.3.0",
"glob-extra": "^2.0.0",
"husky": "^0.11.4",
"istanbul": "^0.4.5",
"mocha": "^2.1.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.3",
"standard-version": "^4.0.0"
},
"scripts": {
"test-unit": "istanbul test _mocha -- --recursive test/unit",
"prepublish": "npm run prepare-calibrate-script && npm run prepare-report-script",
"prepare-calibrate-script": "uglifyjs ./lib/browser/client-scripts/gemini.calibrate.js -m > ./lib/browser/client-scripts/gemini.calibrate.min.js --support-ie8",
"prepare-report-script": "browserify ./lib/reporters/html/static/report.js | uglifyjs -o ./lib/reporters/html/static/report.min.js",
"postpublish": "npm run publish-site",
"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": "eslint .",
"release": "standard-version",
"precommit": "npm run lint",
"commitmsg": "conventional-changelog-lint -e",
"preversion": "npm run lint && npm test",
"prepare-site": "gitbook install",
"build-site": "npm run prepare-site && gitbook build",
"publish-site": "npm run build-site && cd _book && git init && git add -A && git commit -m 'Update site' && git push --force [email protected]:gemini-testing/gemini-testing.github.io.git master"
},
"author": "Sergey Tatarintsev <[email protected]> (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"
}