-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.48 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
{
"name": "project-template",
"version": "2.0.1",
"private": true,
"author": {
"url": "https://iop-ventures.com",
"name": "Internet of People",
"email": "[email protected]"
},
"description": "This project can be used to start developing CLI applications on the IOP stack.",
"repository": "https://github.com/Internet-of-People/ts-template",
"main": "./dist/main.js",
"typings": "./dist/main.d.ts",
"scripts": {
"build": "tsc -p .",
"clean": "rimraf dist && rimraf node_modules",
"start": "npm run build && node .",
"release": "release-it --no-npm.publish"
},
"license": "CC0-1.0",
"dependencies": {
"@internet-of-people/sdk": "5.0.1"
},
"devDependencies": {
"release-it": "14.10.1",
"rimraf": "3.0.0",
"typescript": "3.8.3"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog -p --stdout --commit-limit false -u --commit-url 'https://github.com/Internet-of-People/ts-template/commit/{id}' --compare-url 'https://github.com/Internet-of-People/ts-template/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-template/commit/{id}' --compare-url 'https://github.com/Internet-of-People/ts-template/compare/{from}..{to}' --unreleased false --hide-credit"
}
}
}