This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "protractor-image-comparison",
"version": "3.9.0",
"description": "npm-module to compare images with protractor",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test.init": "protractor ./test/conf/protractor.local.init.conf.js",
"test.local.android": "protractor ./test/conf/protractor.local.android.conf.js",
"test.local.desktop": "protractor ./test/conf/protractor.local.desktop.conf.js",
"test.local.ios": "protractor ./test/conf/protractor.local.ios.conf.js",
"test.saucelabs": "protractor ./test/conf/protractor.saucelabs.conf.js",
"compile": "tsc",
"lint": "eslint lib/*",
"clean": "rimraf coverage build tmp",
"watch": "tsc -w",
"release": "np --no-yarn",
"precompile": "npm run clean",
"prepublish": "npm run compile",
"prerelease": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/wswebcreation/protractor-image-comparison.git"
},
"keywords": [
"image-diff",
"image-comparison",
"protractor",
"comparison",
"pix",
"resemblejs",
"image",
"diff",
"difference",
"compare",
"plugin"
],
"author": "Wim Selles - wswebcreation",
"license": "ISC",
"dependencies": {
"webdriver-image-comparison": "^0.12.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jasmine": "~3.4.6",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "~2.6.1",
"@typescript-eslint/parser": "~2.6.1",
"chalk": "^3.0.0",
"eslint": "~6.6.0",
"fs-extra": "^8.1.0",
"jasmine": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"np": "~5.1.3",
"protractor": "~5.4.2",
"rimraf": "~3.0.0",
"ts-node": "~8.4.1",
"typescript": "~3.6.4"
}
}