-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.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
{
"name": "@simplyhexagonal/mono-context",
"version": "1.1.2",
"description": "Global context to easily share data between monorepo packages",
"private": false,
"main": "dist/mono-context.js",
"types": "dist/mono-context.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/simplyhexagonal/mono-context"
},
"contributors": [
{
"name": "Jean M. Lescure",
"email": "opensource@jeanlescure.io",
"url": "http://jeanlescure.io/"
}
],
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"build": "scripty",
"release": "release-it"
},
"release-it": {
"git": {
"changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
},
"hooks": {
"after:bump": "scripty"
},
"npm": {
"publish": false
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"runkitExampleFilename": "./runkit.js",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"auto-changelog": "^2.3.0",
"esbuild": "^0.12.28",
"jest": "^27.2.0",
"refup": "^1.1.0",
"release-it": "^14.11.5",
"scripty": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}