UNPKG

2.07 kBJSONView Raw
1{
2 "name": "viswiz-sdk",
3 "description": "The VisWiz.io Node.js SDK",
4 "version": "2.0.0",
5 "main": "index.js",
6 "module": "es.js",
7 "author": "Valentin Agachi <valentin@viswiz.io>",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/viswiz-io/viswiz-nodejs-sdk"
11 },
12 "license": "MIT",
13 "keywords": [
14 "visual regression testing",
15 "visual testing",
16 "automated testing",
17 "automation",
18 "testing",
19 "screenshot",
20 "sdk"
21 ],
22 "engines": {
23 "node": ">=8.5.0"
24 },
25 "bin": {
26 "viswiz": "./bin/viswiz"
27 },
28 "files": [
29 "bin/",
30 "dist/",
31 "src/*.js",
32 "es.js",
33 "index.js"
34 ],
35 "scripts": {
36 "build": "babel src/ --out-dir dist/ --ignore \"**/__mocks__/*\"",
37 "docs": "esdoc",
38 "lint": "eslint . --cache --fix --ignore-pattern '!.eslintrc.js'",
39 "pretty": "prettier --write --list-different \"**/*.js\"",
40 "prepack": "yarn build",
41 "pretest": "yarn build",
42 "release": "standard-version -a",
43 "test:jest": "jest",
44 "test:watch": "jest --watch",
45 "test:coverage": "jest --coverage",
46 "test": "yarn test:jest"
47 },
48 "dependencies": {
49 "babel-jest": "24.9.0",
50 "commander": "3.0.1",
51 "env-ci": "4.1.1",
52 "form-data": "2.5.1",
53 "glob": "7.1.4",
54 "got": "9.6.0",
55 "progress": "2.0.3"
56 },
57 "devDependencies": {
58 "@babel/cli": "7.6.0",
59 "@babel/core": "7.6.0",
60 "@babel/plugin-proposal-object-rest-spread": "7.5.5",
61 "@babel/plugin-transform-modules-commonjs": "7.6.0",
62 "esdoc": "1.1.0",
63 "esdoc-brand-plugin": "1.0.1",
64 "esdoc-ecmascript-proposal-plugin": "1.0.0",
65 "esdoc-importpath-plugin": "1.0.2",
66 "esdoc-standard-plugin": "1.0.0",
67 "eslint": "6.3.0",
68 "husky": "3.0.5",
69 "jest": "24.9.0",
70 "lint-staged": "9.2.5",
71 "nock": "11.3.3",
72 "prettier": "1.18.2",
73 "standard-version": "7.0.0",
74 "validate-commit-msg": "2.14.0"
75 },
76 "resolutions": {
77 "graceful-fs": "4.2.2"
78 },
79 "husky": {
80 "hooks": {
81 "commit-msg": "validate-commit-msg",
82 "pre-commit": "lint-staged"
83 }
84 }
85}