snapshot/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2023-02-20 18:17:38 +00:00
{
"name": "@datashard/snapshot",
2024-05-02 19:14:53 +00:00
"description": "Adds JSON Snapshot testing support to Cypress",
"version": "3.0.0-beta.1",
"author": "Joshua <data@shard.wtf>",
"bugs": "https://github.com/datashard/snapshot/issues",
2023-02-20 18:17:38 +00:00
"engines": {
"node": ">=6"
},
"files": [
"img",
"src/*",
"src/*/**",
"!src/*-spec.js"
],
"homepage": "https://shard.wtf/snapshot",
2023-02-20 18:17:38 +00:00
"keywords": [
"cypress",
"cypress-io",
"plugin",
"snapshot",
"testing", "json"
2023-02-20 18:17:38 +00:00
],
"license": "MIT",
"main": "src/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/datashard/snapshot.git"
2023-02-20 18:17:38 +00:00
},
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
2023-03-18 10:01:26 +00:00
"unused-deps": "dependency-check --unused --no-dev . --entry src/index.js",
2023-02-20 18:17:38 +00:00
"semantic-release": "semantic-release",
"cypress:open": "cypress open",
2024-01-31 18:49:52 +00:00
"cypress:update": "cypress run --env updateSnapshots=true",
2023-02-20 18:17:38 +00:00
"cypress:run": "cypress run"
},
"devDependencies": {
2024-02-01 10:58:42 +00:00
"cypress": "12.13.0",
2023-02-20 18:17:38 +00:00
"debug": "3.2.7",
"dependency-check": "2.10.1"
2023-02-20 18:17:38 +00:00
},
"dependencies": {
"@wildpeaks/snapshot-dom": "1.6.0",
"check-more-types": "2.24.0",
"js-beautify": "1.13.13",
2023-12-08 14:56:43 +00:00
"lazy-ass": "1.6.0"
2023-02-20 18:17:38 +00:00
}
}