-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "subset-shot",
"description": "Snapshot testing where result can be a superset of snapshot",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/subset-shot/issues",
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run secure",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"src/*.ts",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/subset-shot#readme",
"keywords": [
"set",
"snapshot",
"subset",
"test",
"testing"
],
"license": "MIT",
"main": "src/",
"types": "src/index.d.ts",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/subset-shot.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"pretest": "npm run lint",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha -r test/show-stack.js src/*-spec.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"bad-line": "0.1.1",
"ban-sensitive-files": "1.9.0",
"cute-stack": "1.4.3",
"dependency-check": "2.8.0",
"deps-ok": "1.2.0",
"git-issues": "1.3.1",
"license-checker": "9.0.3",
"mocha": "3.2.0",
"nsp": "2.6.3",
"pre-git": "3.14.0",
"semantic-release": "^6.3.2",
"standard": "10.0.1"
},
"dependencies": {
"callsites": "2.0.0",
"check-more-types": "2.24.0",
"debug": "2.6.3",
"find-test-caller": "1.0.2",
"lazy-ass": "1.6.0",
"mkdirp": "0.5.1",
"obj-subset": "1.2.0",
"ramda": "0.23.0",
"snap-shot-core": "1.2.2",
"stack-sites": "1.4.1"
}
}