forked from openwallet-foundation/owl-akrida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 1014 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "aries-akrida",
"version": "1.1.0",
"description": "The Aries Akrida is designed to load test various Hyperledger Aries deployments",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"release:major": "changelog -M && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version major && cd load-agent && npm version --no-git-tag-version major",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version minor && cd load-agent && npm --no-git-tag-version version minor",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version patch && cd load-agent && npm version --no-git-tag-version patch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"generate-changelog": "^1.8.0"
}
}