UNPKG

1.92 kBJSONView Raw
1{
2 "name": "viswiz-sdk",
3 "description": "The VisWiz.io Node.js SDK",
4 "version": "5.2.2",
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": ">=10.0.0"
24 },
25 "files": [
26 "dist/",
27 "src/*.js",
28 "es.js",
29 "index.js"
30 ],
31 "scripts": {
32 "build": "babel src/ --out-dir dist/ --ignore \"**/__mocks__/*\"",
33 "docs": "esdoc",
34 "lint": "eslint . --cache --fix --ignore-pattern '!.eslintrc.js'",
35 "pretty": "prettier --write --list-different \"**/*.js\"",
36 "prepack": "yarn build",
37 "pretest": "yarn build",
38 "release": "standard-version -a",
39 "test:jest": "jest",
40 "test:watch": "jest --watch",
41 "test:coverage": "jest --coverage",
42 "test": "yarn test:jest"
43 },
44 "dependencies": {
45 "form-data": "3.0.0",
46 "glob": "7.1.6",
47 "got": "11.3.0",
48 "p-map": "4.0.0"
49 },
50 "devDependencies": {
51 "@babel/cli": "7.10.4",
52 "@babel/core": "7.10.4",
53 "@babel/plugin-proposal-object-rest-spread": "7.10.4",
54 "@babel/plugin-transform-modules-commonjs": "7.10.4",
55 "babel-jest": "26.1.0",
56 "esdoc": "1.1.0",
57 "esdoc-brand-plugin": "1.0.1",
58 "esdoc-ecmascript-proposal-plugin": "1.0.0",
59 "esdoc-importpath-plugin": "1.0.2",
60 "esdoc-standard-plugin": "1.0.0",
61 "eslint": "7.3.1",
62 "husky": "4.2.5",
63 "jest": "26.1.0",
64 "lint-staged": "10.2.11",
65 "nock": "13.0.2",
66 "prettier": "2.0.5",
67 "standard-version": "8.0.0",
68 "validate-commit-msg": "2.14.0"
69 },
70 "husky": {
71 "hooks": {
72 "commit-msg": "validate-commit-msg",
73 "pre-commit": "lint-staged"
74 }
75 }
76}