-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "@simplyhexagonal/exec",
"version": "2.0.2",
"description": "A convenient async wrapper for Node.js's child_process.exec function",
"keywords": [
"exec",
"child_process",
"async exec",
"exec promise",
"promise",
"awaitable exec",
"promisify",
"exit code"
],
"contributors": [
{
"name": "Jean M. Lescure",
"email": "[email protected]",
"url": "http://jeanlescure.io/"
}
],
"main": "dist/exec.js",
"typings": "dist/exec.d.ts",
"scripts": {
"dev": "./scripts/dev",
"test": "./scripts/test",
"build": "./scripts/build",
"release": "release-it"
},
"release-it": {
"git": {
"changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
},
"hooks": {
"after:bump": "./scripts/release"
},
"npm": {
"publish": false
}
},
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"devDependencies": {
"@simplyhexagonal/elean": "^1.0.0",
"@simplyhexagonal/mono-context": "^1.1.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"auto-changelog": "^2.3.0",
"esbuild": "^0.13.9",
"jest": "^27.3.1",
"refup": "^1.1.0",
"release-it": "^14.11.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@simplyhexagonal/elean": "^1.0.0",
"@simplyhexagonal/mono-context": "^1.1.1"
}
}