-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.47 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
93
94
95
96
97
{
"name": "execa-wrap",
"description": "Wraps execa and makes output suitable for snapshot testing",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/execa-wrap/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 license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/execa-wrap#readme",
"keywords": [
"exec",
"execa",
"snap-shot-it",
"utility"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/execa-wrap.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard 'src/*.js'",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha src/*-spec.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"release": {
"analyzeCommits": "simple-commit-message",
"generateNotes": "github-post-release",
"verifyRelease": {
"path": "dont-crack",
"test-against": []
}
},
"devDependencies": {
"ban-sensitive-files": "1.9.2",
"dependency-check": "2.10.1",
"deps-ok": "1.4.1",
"dont-crack": "1.2.1",
"git-issues": "1.3.1",
"github-post-release": "1.13.1",
"lazy-ass": "1.6.0",
"license-checker": "15.0.0",
"mocha": "4.1.0",
"pre-git": "3.17.1",
"prettier-standard": "8.0.1",
"semantic-release": "7.0.2",
"simple-commit-message": "3.3.2",
"snap-shot-it": "4.1.5",
"standard": "11.0.1"
},
"dependencies": {
"common-tags": "1.8.0",
"debug": "3.2.6",
"execa": "0.11.0",
"indent-string": "3.2.0",
"ramda": "0.26.1",
"strip-ansi": "4.0.0",
"strip-indent": "2.0.0"
}
}