-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"name": "with-eyes",
"version": "3.0.1",
"license": "UNLICENSED",
"author": {
"name": "Mantas Miliukas",
"email": "mantasm@wix.com"
},
"main": "index.js",
"files": [
"*.js"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "npm run test:mocha -- --watch",
"test": "WITH_EYES_TIMEOUT=60000 npm run test:mocha && npm run test:jest && npm run test:jasmine",
"test:mocha": "mocha ./test/mocha.spec.js",
"test:jest": "jest ./test/jest.spec.js",
"test:jasmine": "jasmine ./test/jasmine.spec.js",
"build": "eslint *.js test",
"release": ":"
},
"devDependencies": {
"chai": "~4.1.0",
"eslint": "^4.19.1",
"eslint-config-wix": "^1.1.18",
"jasmine": "^3.1.0",
"jest": "^22.4.3",
"mocha": "^5.1.1"
},
"dependencies": {
"@applitools/eyes-images": "^4.12.36",
"uuid": "^3.2.1"
},
"eslintConfig": {
"extends": "wix/esnext"
},
"jest": {
"testEnvironment": "node"
}
}