-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.24 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
{
"name": "@internet-of-people/ts-examples",
"version": "2.0.0",
"private": true,
"author": {
"url": "https://iop-ventures.com",
"name": "Internet of People",
"email": "[email protected]"
},
"description": "An example codebase for IOP Coeus and Morpheus",
"repository": "https://github.com/internet-of-people/ts-examples",
"license": "GPL-3.0-or-later",
"scripts": {
"clean": "rimraf node_modules",
"release": "release-it --no-npm.publish"
},
"devDependencies": {
"release-it": "14.2.1",
"rimraf": "3.0.2"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog -p --stdout --commit-limit false -u --commit-url 'https://github.com/Internet-of-People/ts-examples/commit/{id}' --compare-url 'https://github.com/Internet-of-People/ts-examples/compare/{from}..{to}' --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs --unreleased-only --hide-credit"
},
"hooks": {
"after:bump": "npx auto-changelog -p --commit-limit false -u --commit-url 'https://github.com/Internet-of-People/ts-examples/commit/{id}' --compare-url 'https://github.com/Internet-of-People/ts-examples/compare/{from}..{to}' --unreleased false --hide-credit"
}
}
}