This repository has been archived by the owner on Feb 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 3.54 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
{
"name": "@applitools/eyes-storybook",
"version": "3.2.7",
"description": "",
"main": "src/eyes-storybook.js",
"engines": {
"node": ">=8.6.0"
},
"files": [
"src",
"bin",
"dist"
],
"bin": {
"eyes-storybook": "./bin/eyes-storybook.js"
},
"scripts": {
"test": "npm run build && npm run test:mocha && npm run eslint && npm run msg:success || npm run msg:failure",
"test:mocha": "mocha --no-timeouts --trace-warnings 'test/unit/*.test.js' 'test/it/*.test.js' 'test/e2e/*.test.js'",
"test:unit": "mocha --no-timeouts --trace-warnings 'test/unit/*.test.js'",
"test:it": "mocha --no-timeouts --trace-warnings 'test/it/*.test.js'",
"test:e2e": "mocha --no-timeouts --trace-warnings 'test/e2e/*.test.js'",
"msg:success": "notify -t 'Storybook tests Passed !!' -m 'Yaaaaaa !!!'",
"msg:failure": "notify -t 'Storybook tests Failed !!' -m 'Daaaamm !!!'",
"build": "rollup -c rollup.config.js",
"build:heavy": "node scripts/bitmap.js",
"eslint": "eslint '**/*.js'",
"prepublishOnly": "npm version patch",
"storybook": "start-storybook -c test/fixtures/appWithStorybook -p 9001 -s test/fixtures",
"storybook:heavy": "start-storybook -c test/fixtures/heavyStorybook -p 9002 -s test/fixtures",
"eyes-storybook": "node bin/eyes-storybook.js -f test/fixtures/applitools.config.js",
"eyes-storybook:heavy": "node bin/eyes-storybook.js -f test/fixtures/heavyStorybook/applitools.config.js",
"eyes-storybook:configured": "node bin/eyes-storybook.js -f scripts/preconfigured.config.js",
"changelog": "git changelog -x -p -f v$npm_package_version > History.md && git add ./History.md && git commit -am 'changelog'",
"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",
"postinstall": "node src/postinstall"
},
"keywords": [
"applitools",
"testing",
"browser",
"grid",
"visual-testing",
"nodejs",
"javascript"
],
"author": "Applitools Team <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"url": "https://github.com/applitools/eyes-storybook",
"type": "git"
},
"dependencies": {
"@applitools/dom-snapshot": "3.2.3",
"@applitools/eyes-common": "3.18.3",
"@applitools/eyes-sdk-core": "6.0.10",
"@applitools/functional-commons": "1.5.4",
"@applitools/monitoring-commons": "1.0.19",
"@applitools/visual-grid-client": "13.5.15",
"boxen": "^4.2.0",
"chalk": "^2.4.2",
"detect-port": "^1.3.0",
"lodash.flatten": "^4.4.0",
"lodash.pick": "^4.4.0",
"ora": "^3.4.0",
"puppeteer": "^1.20.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@storybook/addon-options": "^5.2.8",
"@storybook/react": "^5.2.8",
"@testing-library/dom": "^5.6.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bitmap-manipulation": "^2.0.0",
"chai": "^4.2.0",
"core-js": "^3.6.1",
"eslint": "^5.16.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.7.0",
"express": "^4.17.1",
"filenamify": "^4.1.0",
"mocha": "^5.2.0",
"node-fetch": "^2.6.0",
"node-notifier-cli": "^1.1.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.28.0",
"rollup-plugin-commonjs": "^10.1.0",
"strip-ansi": "^5.2.0",
"ua-parser-js": "^0.7.21"
}
}