UNPKG

1.88 kBJSONView Raw
1{
2 "name": "viswiz-sdk",
3 "description": "The VisWiz.io Node.js SDK",
4 "version": "1.5.1",
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 "commander": "3.0.1",
50 "env-ci": "4.1.1",
51 "form-data": "2.5.1",
52 "glob": "7.1.4",
53 "got": "9.6.0",
54 "progress": "2.0.3"
55 },
56 "devDependencies": {
57 "babel-cli": "6.26.0",
58 "babel-core": "6.26.3",
59 "babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
60 "esdoc": "1.1.0",
61 "esdoc-brand-plugin": "1.0.1",
62 "esdoc-importpath-plugin": "1.0.2",
63 "esdoc-standard-plugin": "1.0.0",
64 "eslint": "6.3.0",
65 "husky": "3.0.5",
66 "jest": "23.6.0",
67 "lint-staged": "9.2.0",
68 "nock": "10.0.6",
69 "prettier": "1.18.2",
70 "standard-version": "7.0.0",
71 "validate-commit-msg": "2.14.0"
72 },
73 "husky": {
74 "hooks": {
75 "commit-msg": "validate-commit-msg",
76 "pre-commit": "lint-staged"
77 }
78 }
79}