This repository was archived by the owner on Jun 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "@applitools/visual-grid-client",
"version": "10.0.9",
"description": "",
"main": "src/visual-grid-client.js",
"engines": {
"node": ">=8.0.0"
},
"files": [
"src",
"browser.js"
],
"scripts": {
"build:browser": "cd test/fixtures/test-app && npm i && npm run build",
"test:mocha": "mocha --no-timeouts 'test/**/*.test.js'",
"test:fast": "mocha --no-timeouts 'test/!(browser||e2e)/**/*.test.js'",
"test:unit": "mocha --no-timeouts 'test/unit/**/*.test.js'",
"test:it": "mocha --no-timeouts 'test/it/**/*.test.js'",
"test:e2e": "mocha --no-timeouts 'test/e2e/**/*.test.js'",
"test:browser": "mocha --no-timeouts 'test/browser/**/*.test.js'",
"eslint": "eslint '**/*.js'",
"test": "npm run build:browser && npm run test:mocha && npm run eslint",
"prepublishOnly": "npm version patch",
"changelog": "git changelog -p -f v$npm_package_version",
"changelog:init": "git config changelog.format \"* %s [[%h]($(echo $npm_package_repository_url|cut -d+ -f2|cut -d. -f1-2)/commit/%H)]\"",
"changelog:install": "sudo apt-get install git-extras"
},
"keywords": [
"applitools",
"testing",
"browser",
"grid",
"visual-testing",
"nodejs",
"javascript"
],
"author": "Amit Zur <amit.zur@applitools.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/applitools/visual-grid-client",
"type": "git"
},
"dependencies": {
"@applitools/eyes-sdk-core": "^4.7.1",
"@applitools/functional-commons": "^1.0.39",
"@applitools/http-commons": "^1.2.5",
"@applitools/isomorphic-fetch": "^3.0.0",
"cssom": "^0.3.6",
"he": "^1.2.0",
"lodash.mapkeys": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"mime-types": "^2.1.21",
"mkdirp": "^0.5.1",
"throat": "^4.1.0"
},
"devDependencies": {
"@applitools/dom-snapshot": "^1.0.5",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"cookie-parser": "^1.4.3",
"debug": "^4.1.1",
"eslint": "^4.19.1",
"eslint-plugin-mocha-no-only": "^0.0.6",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.7.0",
"express": "^4.16.4",
"jsdom": "^11.12.0",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"nock": "^9.6.1",
"node-fetch": "^2.3.0",
"prettier": "^1.16.4",
"puppeteer": "^1.12.2"
}
}