UNPKG

2.38 kBJSONView Raw
1{
2 "name": "schema-shot",
3 "description": "Framework-agnostic snapshot testing using 'schema by example' for highly dynamic data",
4 "version": "1.1.1",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": "https://github.com/bahmutov/schema-shot/issues",
7 "config": {
8 "pre-git": {
9 "commit-msg": "simple",
10 "pre-commit": [
11 "npm prune",
12 "npm run deps",
13 "npm test",
14 "npm run ban"
15 ],
16 "pre-push": [
17 "npm run secure",
18 "npm run license",
19 "npm run ban -- --all",
20 "npm run size"
21 ],
22 "post-commit": [],
23 "post-merge": []
24 }
25 },
26 "engines": {
27 "node": ">=6"
28 },
29 "files": [
30 "src/*.js",
31 "!src/*-spec.js"
32 ],
33 "homepage": "https://github.com/bahmutov/schema-shot#readme",
34 "keywords": [
35 "json-schema",
36 "jsonschema",
37 "schema",
38 "snapshot",
39 "test",
40 "testing"
41 ],
42 "license": "MIT",
43 "main": "src/",
44 "publishConfig": {
45 "registry": "http://registry.npmjs.org/"
46 },
47 "repository": {
48 "type": "git",
49 "url": "https://github.com/bahmutov/schema-shot.git"
50 },
51 "scripts": {
52 "ban": "ban",
53 "deps": "dependency-check .",
54 "issues": "git-issues",
55 "license": "license-checker --production --onlyunknown --csv",
56 "lint": "standard --verbose --fix src/*.js test/*.js",
57 "pretest": "npm run lint",
58 "secure": "nsp check",
59 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
60 "test": "npm run unit",
61 "unit": "mocha src/*-spec.js test/*-spec.js",
62 "semantic-release": "semantic-release pre && npm publish && semantic-release post"
63 },
64 "dependencies": {
65 "callsites": "2.0.0",
66 "check-more-types": "2.23.0",
67 "debug": "2.6.1",
68 "disparity": "2.0.0",
69 "falafel": "2.0.0",
70 "lazy-ass": "1.5.0",
71 "mkdirp": "0.5.1",
72 "stack-sites": "1.2.0",
73 "validate-by-example": "1.3.0",
74 "variable-diff": "1.1.0"
75 },
76 "peerDependencies": {
77 "babel-core": "^6.0.0"
78 },
79 "devDependencies": {
80 "ban-sensitive-files": "1.9.0",
81 "dependency-check": "2.8.0",
82 "deps-ok": "1.2.0",
83 "fake-todos": "1.8.0",
84 "git-issues": "1.3.1",
85 "license-checker": "8.0.4",
86 "mocha": "3.2.0",
87 "nsp": "2.6.2",
88 "pre-git": "3.13.0",
89 "semantic-release": "6.3.6",
90 "snap-shot": "2.10.2",
91 "standard": "9.0.0-beta.0"
92 }
93}
\No newline at end of file