UNPKG

structured-data-testing-tool

Version:

A library and command line tool to help test for Structured Data.

52 lines (51 loc) 1.15 kB
{ "name": "structured-data-testing-tool", "version": "4.5.0", "description": "A library and command line tool to help test for Structured Data.", "repository": "https://github.com/glitchdigital/structured-data-testing-tool", "main": "index.js", "bin": { "sdtt": "bin/cli.js" }, "scripts": { "update": "node bin/update-schema-list.js", "test": "jest --verbose --coverage" }, "keywords": [ "Structured Data", "JSON-LD", "Microdata", "RDFa", "Testing" ], "author": "Iain Collins <iain.collins@glitch.digital>", "license": "ISC", "dependencies": { "chalk": "^2.4.2", "columnify": "^1.5.4", "get-stream": "^5.1.0", "is-stream": "^2.0.0", "jmespath": "^0.15.0", "node-fetch": "^2.6.0", "validator": "^11.0.0", "web-auto-extractor": "^1.0.17", "yargs": "^13.2.4" }, "devDependencies": { "husky": "^3.0.1", "jest": "^25.1.0", "jest-fetch-mock": "^2.1.2" }, "jest": { "automock": false, "setupFiles": [ "./jest.setup.js" ] }, "husky": { "hooks": { "pre-commit": "npm test", "pre-push": "npm test" } } }